Hi
I want to create one bundle product for downloadable products. There is any Free Extension or any Admin feature.
Karuna Khatri
Solved! Go to Solution.
Hello @karuna_khatri ,
It's a Magento feature to NOT to have downloadable products in bundle product, but you can edit vendor/magento/module-magento/etc/product-types.xml and add this code in <allowedSelectionTypes> section :
<allowedSelectionTypes> <type name="simple" /> <type name="virtual" /> <type name="downloadable" /> </allowedSelectionTypes>
And also make sure you set "Links can be purchased separately" to unchecked else it won't let you add in bundle product.
I have tried this and tested below flow :
PDP - fine
PLP - fine
Add to cart - fine
Cart page - fine
Checkout - fine
Hope it helps to resolve your issue.
Regards
Gaurav
Hello @karuna_khatri ,
It's a Magento feature to NOT to have downloadable products in bundle product, but you can edit vendor/magento/module-magento/etc/product-types.xml and add this code in <allowedSelectionTypes> section :
<allowedSelectionTypes> <type name="simple" /> <type name="virtual" /> <type name="downloadable" /> </allowedSelectionTypes>
And also make sure you set "Links can be purchased separately" to unchecked else it won't let you add in bundle product.
I have tried this and tested below flow :
PDP - fine
PLP - fine
Add to cart - fine
Cart page - fine
Checkout - fine
Hope it helps to resolve your issue.
Regards
Gaurav
Hi @gaurav_harsh1
Yeah, It's working now.
Thank you