Change blocks order in the left column

I try to change the blocks order in the left column… unsuccessfully 🙁
I need to move related products to the first, "Shop By" to the second order in a product view.
In the catalog view I need to move the "Shop By" the first order.

You advise me please? Thank you very much..

4 answers

Profile photo of thangnn1510 0.00 $tone February 25, 2011
Public

Dear jhejlik!

Thanks for contacting us. I have edited your post because you have posted your private login information here. That isn’t good.

Regarding your question, this is quick solution for you:

Please go to app\design\frontend\default\jm_natris\layout\catal og.xml and then go to line 122:

Code:

<reference name="left">
            <block type="catalog/layer_view" name="catalog.leftnav" before="currency" template="catalog/layer/view.phtml"/>
        </reference>

change to

Code:

<reference name="left">
            <block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml"/>
        </reference>

Then go to line 272:

Code:

<reference name="right">
            <block type="catalog/product_list_related" name="catalog.product.related" before="catalog.topnav" template="catalog/product/list/related.phtml"/>
        </reference>

change to:

Code:

<reference name="left">
            <block type="catalog/product_list_related" name="catalog.product.related" before="catalog.topnav" template="catalog/product/list/related.phtml"/>
        </reference>

Hope this help and good luck!

#3

This question is now closed

Written By

Comments