Move layered navigation block between product list toolbar and product list
Add this code to your layout XML:
<?xml version="1.0"?>
<layout version="0.1.0">
<catalog_category_layered>
<reference name="left">
<action method="unsetChild"><alias>catalog.leftnav</alias></action>
</reference>
<reference name="product_list">
<action method="insert"><blockName>catalog.leftnav</blockName></action>
</reference>
</catalog_category_layered>
</layout>
In list.phtml File Call this
<?php echo $this->getChildHtml('catalog.leftnav'); ?>
Comments
Post a Comment