ScoRpion
ScoRpion

Reputation: 11474

How to remove left panel from Category page Magento?

I want to remove the right panel from my category page. In fact I could do it manually while creating a category and select 2 page layout there. But Since I have a long list of categories And I Dont Need the right panel anyway. So i would like to remove it permanently from my category page. Is there any simple way using Xml or Phtml I can Achieve this.

Upvotes: 0

Views: 775

Answers (1)

ScoRpion
ScoRpion

Reputation: 11474

Open Your catalog.xml file

Find <catalog_category_default translate="label"> Tag Around Line number 76

JUst go to the above xml tag and then add this code it will set the default template to 1columt

<reference name="root">
    <action method="setTemplate"><template>page/1column.phtml</template></action>
</reference> 

Upvotes: 3

Related Questions