无法在Magento找到页脚链接

时间:2015-07-06 11:02:23

标签: magento footer

我正在尝试更改Magento页面页脚中的链接。

在页脚中有以下HTML:

<div class="col1 gapRight floatLeft">
    <h2>Customer Service</h2>
    <ul>
        <li><a href="/index.php/about-magento-demo-store">About Us</a></li>
        <li><a href="/index.php/customer-service">Customer Service</a></li>
        <li class="last privacy"><a href="/index.php/privacy-policy-cookie-restriction-mode">Privacy Policy</a></li>
        <li class="last privacy"><a href="/contact-us">Contact Us</a></li>
    </ul>
    <ul class="links">
        <li class="first" ><a href="/index.php/catalog/seo_sitemap/category/" title="Site Map" >Site Map</a></li>
        <li ><a href="/index.php/catalogsearch/term/popular/" title="Search Terms" >Search Terms</a></li>
        <li ><a href="/index.php/catalogsearch/advanced/" title="Advanced Search" >Advanced Search</a></li>
        <li ><a href="/index.php/sales/guest/form/" title="Orders and Returns" >Orders and Returns</a></li>
        <li class=" last" ><a href="/index.php/contacts/" title="Contact Us" >Contact Us</a></li>
    </ul>
</div>

第一个ul列表被定义为名为footer_links的CMS静态块。

有谁能告诉我在哪里可以找到第二个ul列表?

我已经google了,我一直被反馈回静态块。第二个ul列表绝对不是静态块(我已经删除了所有静态块,这个列表仍然存在)。还能在哪里定义?

1 个答案:

答案 0 :(得分:1)

您的模板正在使用存储在XML文件中的核心页脚链接。

打开Magento文件夹,转到app / design / frontend /。当您在模板文件夹中时,打开布局文件夹。如果它们不存在,您可能需要创建和覆盖。

网站地图

在catalog.xml文件中:

 <reference name="footer_links">
     <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map">
         <label>Site Map</label><url helper="catalog/map/getCategoryUrl" />
         <title>Site Map</title>
     </action>
 </reference><br>

搜索字词和高级搜索

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

与我们联系

在contacts.xml文件中:

 <reference name="footer_links">
     <action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled">
         <label>Contact Us</label>
         <url>contacts</url>
         <title>Contact Us</title>
         <prepare>true</prepare>
     </action>
 </reference>