Search code examples
magentosidebar

Move Shop By content to Right Sidebar in Magento


I have 2columns-right.phtml. how to move Shop By contents [which is in left sidebar] to Right Sidebar


Solution

  • In <catalog_category_layered> handle you need to put layer navigation block in 'Right' block as below:

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

    Add the above xml code in your theme layout local.xml file.