Magento – Configurable Product options box not showing on the front end

attributesce-1.7.0.2configurable-productcustom-optionsfrontend

The drop down selection box is not showing for configurable products, the configurable product itself is showing but not the options to choose which simple product is selected.

It is probably notable that I am using the latest version of the organic internet SCP (Simple Configurable Products) Module.

I have made sure of the following:

  1. Both the simple and configurable products are enabled.
  2. Both the simple and configurable products are in stock.
  3. The Simple Products have 1 quantity in stock.
  4. The Configurable product has associated simple products.
  5. Configurable Attribute is set for all product types.
  6. Configurable Attribute is in the correct Attribute Set.
  7. Configurable Attribute has options.
  8. Configurable product is visible in catalogue and Search.

My Problem is the same as this thread.

http://www.magentocommerce.com/boards/viewthread/38811/

Please Help me avoid further hair loss.

Thanks

Product Options Not Showing

Best Answer

Was the product created programmatically or via import script?

If the configurable product doesn't have a value specified for the options_cointainer attribute, the effect will be similar to the one described by you.

You can solve the problem by saving the configurable product from Admin Panel, selecting a value for the the "Display Product Options in" of the "Design" tab of the product details.

Otherwise the following will do that programmatically:

Mage::getModel('catalog/product')->load()->setOptionsContainer('container1')->save();

or

Mage::getModel('catalog/product')->load()->setOptionsContainer('container2')->save();

Regards

Related Topic