gpt4 book ai didi

magento - 如何从页脚中删除 'Orders and Returns'?

转载 作者:行者123 更新时间:2023-12-03 06:19:35 25 4
gpt4 key购买 nike

我已将全新的 Magento 1.5.0.1 安装更新为 Magento 1.6.0.0,现在页脚中有一个链接“订单和返回”,我(尚)不知道如何删除该链接那个。

我无法从核心文件中删除它,我已经尝试过 XML 方法,但似乎不起作用(可能是我的错)。

目前我什至无法定位链接的生成位置,因为简单的测试(例如在输出应该出现的位置放置随机单词)永远无法工作。

有人有任何建议或解决方案吗?

最佳答案

你可以尝试:

<layout>
<default>
<reference name="return_link">
<!-- Set the template file to an empty string to prevent output -->
<action method="setTemplate">
<template></template>
</action>
</reference>
</default>
</layout>

或者在 1.7+ 中:

<layout>
<default>
<reference name="footer_links">
<action method="removeLinkBlock">
<blockName>return_link</blockName>
</action>
</reference>
</default>
</layout>

或者,正如 Rumble 提到的:

<layout>
<default>
<remove name="return_link" />
</default>
</layout>

关于使用删除元素的一个警告是,当它转换为全局 xpath 选择器时,它会阻止在布局中的任何位置使用该 block 名称。

关于magento - 如何从页脚中删除 'Orders and Returns'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7192783/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com