|
You need to do one of two things, depending on your theme setup. If you’re not using custom CMS, you can change the catalog.xml file directly and add the following code:
<reference name="left">
<block type="catalog/layer_view" before="-" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
</reference>
or if you have a custom theme, go to CMS > Pages > Home and put the same code as above in there
If you want it to appear at the top left, above all other content in your left sidebar, then use this:
<reference name="left">
<block type="catalog/layer_view" before="-" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
</reference>
BUT make sure there are no other instances of before="-" for other blocks in the sidebar.
The phtml file that outputs the filtered navigation is located at:
app>design>frontend>default>[yourtheme]>template>catalog>layer>view.phtml
|