這是一個非常古老的問題,但它可以幫助任何人像我一樣的東西。
要從側邊欄中刪除類別列表,您可以修改xml文件,如下所示。從分層導航
刪除:
添加以下代碼local.xml
文件,如果主題有這樣的文件:
<catalog_category_layered>
<reference name="catalog.leftnav">
<action method="unsetChild">
<child>category_filter</child>
</action>
</reference>
</catalog_category_layered>
添加以下代碼catalog.xml
文件,如果local.xml
不存在:
<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml">
<action method="unsetChild">
<child>category_filter</child>
</action>
</block>
從類別默認頁面刪除:
添加以下代碼local.xml
文件,如果主題有這樣的文件:
<reference name="catalog.leftnav" >
<action method="unsetChild">
<child>category_filter</child>
</action>
</reference>
添加以下代碼catalog.xml
文件,如果local.xml
不存在:
<block type="catalog/navigation" name="catalog.leftnav" after="currency" template="catalog/navigation/left.phtml">
<action method="unsetChild">
<child>category_filter</child>
</action>
</block>
從目錄中搜索頁面刪除:
添加local.xml
文件如果主題有這樣的文件:
<catalogsearch_result_index>
<reference name="catalog.leftnav">
<action method="unsetChild">
<child>category_filter</child>
</action>
</reference>
</catalogsearch_result_index>
添加以下代碼catalogsearch.xml
文件,如果沒有local.xml
存在:
<block type="catalogsearch/layer" name="catalogsearch.leftnav" after="currency" template="catalog/layer/view.phtml">
<action method="unsetChild">
<child>category_filter</child>
</action>
</block>
注:請清除緩存如果你已經在你的管理員是否啓用它。
來源
2016-09-01 09:32:47
SCC
您是否嘗試設置爲錨定爲否? –
是的,我試過了。但它從兩個地方刪除。我最終使用了這個:jQuery(「。pcl-items-menu li span:contains('To purchase from US online store')」)。parent()。hide();我知道它不漂亮,但。 –