Magento从页脚链接中删除SEO条款和高级搜索

时间:2012-09-13 00:07:57

标签: magento magento-1.7

我在互联网上看到了很多解决方案,但考虑到Magento的向上兼容性,它们似乎都不完整。

我想从 footer_links 引用中删除“热门搜索字词”和“高级搜索”链接。

由于我希望我的网站可以升级,我希望通过local.xml执行此操作,而不是将catalogsearch.xml复制到本地版本,因为我认为这不是向上兼容的。 我已经看到了相关的.phtml文件的一些变化,但我也相信这不是解决这个问题的正确方法,应该可以通过local.xml吗?

catalogsearch.xml中的块中没有“name”属性,如下所示:

    <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>

我该如何解决这个问题?

编辑:页脚中的“站点地图”链接也是如此。

2 个答案:

答案 0 :(得分:5)

您可以将此代码放在您的主题local.xml文件中,不要忘记删除缓存。这在CE 1.7.0.2中进行了测试

<?xml version="1.0"?>
<layout version="0.1.0">
    <default>
        <reference name="footer_links">
            <!-- Remove 'Site Map' -->
            <action method="removeLinkByUrl"><url helper="catalog/map/getCategoryUrl" /></action>
             <!-- Remove 'Search Terms' Link -->
            <action method="removeLinkByUrl"><url helper="catalogsearch/getSearchTermUrl" /></action>
             <!-- Remove 'Advanced Search' -->
            <action method="removeLinkByUrl"><url helper="catalogsearch/getAdvancedSearchUrl" /></action>
    </reference>
 </default>
</layout>

答案 1 :(得分:-1)

在布局文件夹中的所有xml文件中搜索:

应用/设计/前端/主题/ NAME /布局/ *。XML

您将看到有多个文件使用XML添加链接到页脚链接块。 您可以根据需要简单地注释掉addLink标签

<!--
<action method="addLink" translate="label" module="tag">
        <name>tags</name><path>tag/customer/</path><label>My Tags</label>
</action>
-->