我试图找出在magento 1.9中编辑页脚链接的位置,但是我找不到任何我将要搜索它近3小时但没有成功的内容。对不起,我只是一个magento的新手。 我想编辑" QUICK LINKS"下的链接。 " ACCOUNT"我找到了公司下的链接,它在静态块下的magento后端,但两者都没有成功。 感谢
答案 0 :(得分:6)
这些链接添加在多个布局文件中。最简单的方法是在“layout / * .xml”文件中对“footer_links”短语进行目录搜索(在IDE中)。您将看到在sales.xml,customer.xml或cms.xml中设置了一些链接。例如,在sales.xml的底部,您应该看到如下内容:
<default>
<reference name="footer_links2">
<block type="sales/guest_links" name="return_link"/>
<action method="addLinkBlock"><blockName>return_link</blockName></action>
</reference>
</default>
这告诉Magento将“订单和退货”链接添加到页脚中的“帐户”块。如果将footer_links2更改为footer_links,此链接将最终出现在“快速链接”块中。我想一旦你找到了这个,你就会弄明白其余的。
答案 1 :(得分:5)
其他链接和标题通过布局系统设置:
page.xml:
<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
<block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
<label>Page Footer</label>
<action method="setElementClass"><value>bottom-container</value></action>
</block>
<block type="page/switch" name="store_switcher" as="store_switcher" after="*" template="page/switch/stores.phtml"/>
<block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml">
<action method="setTitle"><title>Quick Links</title></action>
</block>
<block type="page/template_links" name="footer_links2" as="footer_links2" template="page/template/links.phtml">
<action method="setTitle"><title>Account</title></action>
</block>
<!-- This static block can be created and populated in admin. The footer_links cms block can be used as a starting point. -->
<!--<block type="cms/block" name="footer_social_links">
<action method="setBlockId"><block_id>footer_social_links</block_id></action>
</block>-->
</block>
然后在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>
答案 2 :(得分:2)
管理菜单上的链接可用 - &gt; CMC - &gt; 静态阻止
此处提供页脚链接,并修复/修改所需的链接。
答案 3 :(得分:-1)
在CMS /页面上,您可以找到编辑页脚的选项。
答案 4 :(得分:-3)
兄弟,你可以创建一个自定义静态块并将其添加到页脚,只需替换旧的。希望有所帮助。... ..
答案 5 :(得分:-5)
嗨,这也很简单。
从主题中粘贴到style.css中。
ul.links {display:none}
或来自第一个街区的另一个班级。并通过statisch块在admin的第一个块中创建新链接。