英文:
Personal price & Commercial price for Downloadable Product in Magento 2
问题
Magento 2是否有可能在动态可下载产品页面上为客户显示一个下拉框(作为可配置选项),其中包括两个价格:个人使用价格和商用使用价格?或者是否可以通过插件实现?下面是下拉框选项的示例:
$10(个人使用)
$100(商用使用)
我查看了可下载产品设置中的管理工具,但没有找到如何实现这一点的方法。
谢谢提前回答。
英文:
Does the Magento 2 have a possibility to show for customer on a Dynamic Downloadable Product Page a drop-down (as configurable option) with 2 prices: price for personal use and price for commercial use? Or is it possible to do via plugin? Example of drop-down options:
$10 (for personal use)
$100 (for commercial use)
I looked in the Admin Tools at Downloadable Product settings and didn't find a way how to do this.
Thanks in advance
答案1
得分: 0
问题是通过具有2个选项(个人使用、商业使用)的license_type产品属性以及可配置产品来解决的。在这种情况下,我们需要创建一个父可配置产品,该产品将基于license_type属性拥有2个子可下载子产品。最后,我们可以在产品动态页面上获得一个必填的许可类型下拉框。
英文:
The problem was solved via license_type Product Attribute with 2 options (personal_use, commercial_use) & configurable product. In this case we need to create a parent configurable product, this product will have 2 child downloadable subproducts based on license_type attribute. Finally we can get a mandatory license type dropdown on a Product Dynamic Page
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论