Magento:左侧类别的过滤器也显示在我们的主页左侧菜单中

时间:2012-12-26 11:20:25

标签: magento

所以我正在更改catalog.xml中的代码

<catalog_category_layered translate="label">
<label>Catalog Category (Anchor)</label>
<reference name="left">
    <block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
</reference>
</catalog_category_default>



<catalog_category_default translate="label">
<label>Catalog Category (Non-Anchor)</label>
<reference name="left">
<!--  <block type="catalog/navigation" name="catalog.leftnav" after="currency" template="catalog/navigation/left.phtml"/>-->
 <block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
</reference>
</catalog_category_default>

我想在我们的模板home.phtml中添加过滤层,但它不起作用 我也在home.phtml管理cms设计中添加块,但它没有工作,所以任何人告诉 我该怎么办?

1 个答案:

答案 0 :(得分:1)

您是否检查过左边是否有名为“currency”的区块?正如此代码告诉Magento在名为currency的块之后添加它。

也许尝试以下会把它放在第一位。

<block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml"/>