Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change category page layout in Magento?

Tags:

magento

My problem is I want to change my category page layout similar as homepage I tried a lot but didn't get the answer.

like image 258
webkul Avatar asked Nov 19 '09 11:11

webkul


2 Answers

However, the best way to do this is to not edit catalog.xml, but page.xml

under , edit the first block you see there:

<block type="page/html" name="root" output="toHtml" template="page/3columns.phtml">

change this to:

<block type="page/html" name="root" output="toHtml" template="page/2columns-right.phtml"> 

for further detail follow this link http://www.magentocommerce.com/boards/viewthread/16838/

like image 180
ahsan Avatar answered Nov 09 '22 00:11

ahsan


Login to admin side

Catelog -> manage Categories -> Choose your category

Then on the tab section select Custom Design.

Change the Page Layout as what ever you want.

like image 31
Murali Avatar answered Nov 09 '22 00:11

Murali