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
Asked
Active
Viewed 1,365 times
0
-
On top of category page or product detail page? – Gerard de Visser May 24 '14 at 14:23
-
Category page. Just between toolbar (with sort command) and product list.... – Ligrex May 24 '14 at 14:38
1 Answers
0
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.

Gerard de Visser
- 7,590
- 9
- 50
- 58
-
Hi Gerard, thank you. I tried this but it doesn't work. Something wrong in my implementation? – Ligrex May 24 '14 at 16:41
-