Magento 1.9: Amasty Improved Layered Navigation position in product list page

1.3k Views Asked by At

I would like to place the block "Amasty Improved Layered Navigation" in the product list page, exactly between the toolbar and the list itself but for how hard I tried changing both the phtml and xml file, I did not succeed. Does anyone have any idea how to do? thanks ligrex

1

There are 1 best solutions below

2
On

Add following to local.xml or page.xml between layout tags:

<catalog_category_view>
    <reference name="product_list">
        <block type="core/template" name="amasty.block.name" template="path/to/amasty_template.phtml" after="product_list_toolbar"/>
    </reference>        
</catalog_category_view>

Change name and template to desired values.