|
For some reason my layered navigation wouldn’t show (even with the default unchanged templates).
I had to change catalog.xml from this:
<catalog_category_default> <reference name="right"> <block type="catalog/navigation" name="catalog.leftnav" after="catalog.compare.sidebar" template="catalog/navigation/left.phtml"/> </reference>
to this:
<catalog_category_default> <reference name="right"> <block type="catalog/navigation" name="catalog.leftnav" after="catalog.compare.sidebar" template="catalog/navigation/left.phtml"/> <block type="catalog/layer_view" name="catalog.leftnav" after="catalog.compare.sidebar" template="catalog/layer/view.phtml"/> </reference>
But now it shows up twice even if I remove the same block from <catalog_category_layered>.
What am I doing wrong?
|