Magento – How to change “Display Product Options In” to default to “Product Info Column””

databasedesign

When I create a simple product, I go to the Design tab and check "Product Info Column" in the "Display Product Options In" dropdown for each product I add. How can I make it that Magento defaults to "Product Info Column" instead of the other option?

I've already went to the database and changed the "options_container" row to the default value of "container1" in the "eav_attribute" table. The odd part is that it was already set to "container1" and it still doesn't work.

Best Answer

It's only in the database:
UPDATE eav_attribute SET default_value = 'container1' WHERE attribute_code = 'options_container';
I tested it and it's working fine. So if you changed it in the database - please flush the cache.

Related Topic