Question

Where can I change the layout of the Product List Page filtered by the Product Tag. Currently My layout would be 3 columns but I want to change it to 2 columns left sidebar. How can I do it?

Was it helpful?

Solution

you can modify your catalog.xml (app\design\frontend\yourtheme\default\layout\catalog.xml) by adding this code below <catalog_category_layered translate="label"> like this :

<catalog_category_layered translate="label">
    <label>Catalog Category (Anchor)</label>
    <reference name="root">
        <action method="setTemplate">
          <template>page/2columns-left.phtml</template> 
        </action>
    </reference>
    .....

If you can't find it in your catalog.xml, you can added in local.xml like this :

<catalog_category_layered translate="label">
  <reference name="root">
    <action method="setTemplate">
      <template>page/2columns-left.phtml</template> 
    </action>
  </reference>
</catalog_category_layered>

You can read more about layout change in here : How to change default page layout

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top