local.xml在Magento 1.9.2.2 RWD中不起作用

时间:2015-11-26 20:06:30

标签: xml magento

我使用带有RWD包的Magento 1.9.2.2 似乎local.xml不起作用。
如果我将原始catalog.xml复制到带有local.xml的目录,则会对catalog.xml进行更改。

这是local.xml的代码:

<?xml version="1.0"?>
<layout version="0.1.0">

<!--
Default layout, loads most of the pages
-->

<default>
    <!-- remove the language and store switcher and footer links blocks, we won't use them -->
    <remove name="store_language" />
    <remove name="store_switcher"/>
    <remove name="footer_links" />
</default>

<default>
<reference name="right">
<remove name="catalog.compare.sidebar" />
<remove name="left.reports.product.viewed" />
<remove name="catalog.product.related" />
</reference>
</default>

也许我已将local.xml放在错误的位置?

希望任何人都有线索,
ELS

This is where I placed the local.xml

1 个答案:

答案 0 :(得分:0)

我在magento.stackexchange.com上从SeStro得到了这个答案:

  

尝试将'remove'节点放到'reference'节点('store_language'到   'header','store_switcher'和'footer_links'到'页脚')。它sholud   有效,因为1.9.2.2对local.xml文件没有任何问题。   如果它毕竟不起作用,你可以做任何你想做的事情   自定义模板中的“catalog.xml”文件;] - SeStro 11月30日20:57

这很完美。