cancel
Showing results for 
Search instead for 
Did you mean: 

Adding Downloadable Products to Bundled Product Magento 2.3

SOLVED

Adding Downloadable Products to Bundled Product Magento 2.3

Hi
I want to create one bundle product for downloadable products. There is any Free Extension or any Admin feature.

 

 

 

Karuna Khatri

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Adding Downloadable Products to Bundled Product Magento 2.3

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

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

View solution in original post

2 REPLIES 2

Re: Adding Downloadable Products to Bundled Product Magento 2.3

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

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: Adding Downloadable Products to Bundled Product Magento 2.3

Hi @gaurav_harsh1 

Yeah, It's working now.
Thank you