Magento – change configurable product detail page layout

configurable-productproduct-view

is it possible to change layout of product detail page of configurable products via custom modules instead of changing config.xml and other core files .

please prodive better wayto do this

Best Answer

Hi you can change easy by layout handler. when magento is call a configurable products it add PRODUCT_TYPE_configurable handler to current layout

ex:

<PRODUCT_TYPE_configurable>
 <!-- Mage_Catalog -->
        <reference name="root">
            <action method="setTemplate"><template>page/2column-left.phtml</template></action>
        </reference>
</PRODUCT_TYPE_configurable>

create local.xml at app/design/frontent/yourpackage/yourtempate/layout/ and add this code

Related Topic