Magento 1.9 – Creating Bundle Products with Fixed Items

bundled-productconfigurable-productmagento-1.9

I am trying to create a product bundle which contains 6 child products. 3 of these child products are fixed and must be included in the bundle. Each of the other 3 child products has different models and customer can choose which model he wants.

Is this possible with Magento?

Why I can not use bundle products

It is not possible to add fixed products. In addition user can change the qty (the qty of each item is fixed, only model can be chosen)

Why I can not use configurable products

If each of 3 child products has 2 models, I need to define 8 products. But I actually have 6 products. this causes problem in managing stock.

Is it possible to create such products in Magento?
Thank you

Best Answer

Why I can not use bundle products

It is not possible to add fixed products. In addition user can change the qty (the qty of each item is fixed, only model can be chosen)

Good news: That's not true. You can add fixed products as well as selectable products with fixed qty.

For the fixed items, create one option each, as follows:

  • Type: Drop-down
  • Is Required: Yes
  • One Selection
    • Default Qty: 1
    • User Defined Qty: No

For the other items, create one option each as follows:

  • Type: Drop-down
  • Is Required: Yes
  • Multiple Selections for the different models:
    • Default Qty: 1
    • User Defined Qty: No
Related Topic