html - Move Category Layered Navigation to bottom of sidebar Magento -
html - Move Category Layered Navigation to bottom of sidebar Magento -
magento 1.9 rwd theme cannot category layered navigation move. can remove don't want remove it. want move it. cannot respond either "unsetchild" or before/after. have tried every suggestion can find , nil work. want "regular" category navigation in left block layered navigation below layered navigation not budge. have now:
class="snippet-code-html lang-html prettyprint-override"><catalog_category_layered> <reference name="left"> <block type="catalog/navigation" name="catalog.leftnav.categories" before="currency" template="catalog/navigation/left.phtml"/> </reference> <reference name="catalog.leftnav"> <action method="unsetchild"><child>category_filter</child></action> </reference> </catalog_category_layered>
i have tried variety of combinations on layered navigation. in catalog.xml have changed placing after="-". have changed compare sidebar before. have tried many combinations of below code in local.xml
class="snippet-code-html lang-html prettyprint-override"><reference name="left"> <action method="unsetchild"><alias>catalog.leftnav</alias></action> </reference> <reference name="left"> <action method="insert"><blockname>catalog.leftnav</blockname></action> </reference>
any help appreciated.
figured out. reference name needs
class="snippet-code-html lang-html prettyprint-override"><reference name="left_first">
instead of
class="snippet-code-html lang-html prettyprint-override"><reference name="left">
the code follows
class="snippet-code-html lang-html prettyprint-override"><catalog_category_layered> <reference name="left_first"> <block type="catalog/navigation" name="catalog.leftnav.categories" before="-" template="catalog/navigation/left.phtml"/> </reference> <reference name="catalog.leftnav"> <action method="unsetchild"><child>category_filter</child></action> </reference> </catalog_category_layered>
html xml magento order block
Comments
Post a Comment