2010-08-18
修改magento底部链接(footer link)
栏目:Magento 教程 , magento模板美工
2,874 views
尚无回复
下面教程是教你怎样去修改magento的底部链接,包括 About Us, Customer Service ,Site Map ,Search Terms, Advanced Search, Contact Us ,RSS ,copyright notic 等等。
1.关于我们和客户服务(About Us | Customer Service)
这两个链接主要由 cms.xml 文件进行调用。
修改这两个链接的URL你可以去magento管理后台CMS=> Static Blocks =>Footer Links
<li><a href=”{{store direct_url=”about-us”}}”>About Us</a></li>
<li><a href=”{{store direct_url=”customer-service”}}”>Customer Service</a></li>
修改其内容你需打开magento后台CMS => Pages ,然后找到 About Us 和Customer Service 的CMS页,打开进行编辑。
2. 网站地图(Site Map)
magento 的sitemap是由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>
3. 搜索条目和高级搜索(Search Terms | Advanced Search)
这两个是由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>
4. 联系我们(Contact Us)
magento 的contact us 可修改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>
5. RSS
找到 rss.xml文件
<action method=”addLink” translate=”label title” module=”rss” ifconfig=”rss/config/active”><label>RSS</label><url>rss</url><title>RSS testing</title><prepare>true</prepare><urlParams/><position/><li/>
</reference>
/app/design/frontend/default/default/template/page/html/footer.phtml 文件进行编辑。也是修改footer.phtml文件 /app/design/frontend/default/default/template/page/html/footer.phtml
标签: 修改magento底部链接
转载注明:转自Topmagento.com|Magento技术交流站
本站遵循:署名-非商业性使用-禁止演绎 3.0 共享协议
收藏分享:
QQ书签 /
百度收藏 /
Google书签 /
收藏到鲜果 /
Digg /
Del.icio.us

