Magento – How to allow configurable product on Grouped product

grouped-productsmagento-community

I am trying to add grouped product(s) with configurable product(s) and using the AITOC extensions "Custom Options for Grouped Product", however it only allows simple product(s) with or without custom options only but not a configurable product(s) that I need. I already modified app/code/core/Mage/Catalog/etc/config.xml, and added <configurable/> under

<config>
    <global>
        <catalog>
            <product>
                <type>
                    <grouped>
                        <allow_product_types>

so that it will allow configurable product(s).But, when I checked on the product view page, the configurable product I added on that grouped product was showing though but not its option(s).

I hope anyone can help me to solve this. A big Thanks!

Best Answer

There is a reason the <allow_product_types> does not contain the <configurable /> product type. Magento does not have support for configurable products inside the grouped products. If you modified this, any configurable product listed in the grouped product will be treated as a simple product.
Honestly I share your interest in this, it would be a nice feature to have but it involves a lot of coding.
I haven't seen any extensions that allow this. Maybe the code 'amount' is the reason no one does this.
Maybe a good work around would be to include in the grouped product all the simple products that compose the configurable products (you may need to change the visibility of these products but I'm not sure.) Then the customer can choose what he/she needs.
Here is an example. Let's say you have 2 configurable products:

  1. A couch that can be sold in black or white. (so color is the configurable attribute).
  2. A coffee table sold in yellow and blue (again color is the configurable attribute)

Then you make the grouped product called Minimalist Living room that should contain your 2 configurable products, but instead it will contain 4 simple products:

  1. White Couch
  2. Black Couch
  3. Yellow coffee table
  4. Blue coffee table

Then the customer can choose a couch and a coffee table (or more) and you get the desired result.


I know that noone in their right mind will buy a combination like that (or would they?) but I think you get the point of what I'm saying.

Related Topic