Magento – magento 2.1 product custom option extra field like Quantity

custom-optionsmagento-2.1

I want to add custom field for quantity in custom option value like given in image.
I tried following Magento 2 add new custom option text field but it add earlier while i need it with custom option value.

enter image description here

Any help will be appreciated.

Best Answer

Please follow below steps:

Step1: First of all keep back up "CustomOptions.php" from the below mentioned path

i.e Magento2Root/vendor/magento/module-catalog/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php

Step 2: Please follow the below github link and download the file and place the same in the respected (mentioned) path. Click Here Github Link

Step 3: Please create a database column in the name of 'qty_option' for the below 2 tables

catalog_product_option

catalog_product_option_type_value

enter image description here

Step 4: Clear cache and page_cache and re login into admin and check the same.

Note: Once it works using meld tool identify the changes what i did in the CustomOptions.php

Using plugin concept try to achieve the same from your end. Thanks

output

Related Topic