我在互联网上看到了很多解决方案,但考虑到 Magento 的向上兼容性,它们似乎都不完整。
我想从footer_links参考中删除“热门搜索词”和“高级搜索”链接。
因为我希望我的站点准备好升级,所以我想通过 local.xml 来做到这一点,而不是通过将 catalogsearch.xml 复制到本地版本,因为我认为这不是向上兼容的。我已经看到相关 .phtml 文件的一些更改,但我也认为这不是解决此问题的正确方法,应该可以通过 local.xml 对吗?
catalogsearch.xml 中的块中没有“名称”属性,如下所示:
<reference name="footer_links">
<action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
<label>Search Terms</label>
<url helper="catalogsearch/getSearchTermUrl" />
<title>Search Terms</title>
</action>
<action method="addLink" translate="label title" module="catalogsearch">
<label>Advanced Search</label>
<url helper="catalogsearch/getAdvancedSearchUrl" />
<title>Advanced Search</title>
</action>
</reference>
我应该如何解决这个问题?
编辑:页脚中的“站点地图”链接同样重要。