Magento - 在客户帐户仪表板上编辑侧边栏导航

发布于 2024-09-17 19:16:03 字数 92 浏览 5 评论 0原文

哪个文件控制客户帐户仪表板上侧边栏导航中的链接?

谢谢

编辑:我正在尝试编辑这些链接上的文本(例如,将“时事通讯订阅”更改为“最新新闻”)

which file controls the links in the sidebar navigation on a customer's account dashboard?

thanks

EDIT : i'm trying to edit the text on these links (eg. change "Newsletter Subscriptions" to "Latest News" maybe)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹏雨一样淡蓝的深情 2024-09-24 19:16:03

这些链接是根据不同的布局 XML 文件构建的。 customer.xml 文件创建左侧导航块:

 <customer_account translate="label">
   ...
    <reference name="left">
        <block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml">
            <action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action>

然后其他布局添加链接,例如:

<customer_account>
    <!-- Mage_Newsletter -->
    <reference name="customer_account_navigation">
        <action method="addLink" translate="label" module="newsletter"><name>newsletter</name><path>newsletter/manage/</path><label>Newsletter Subscriptions</label></action>
    </reference>

因此,要编辑新闻通讯链接的文本,您需要编辑新闻通讯中的标签节点。 xml 在你的主题中。

哈特哈,
京东

Those links are built up from the different layout XML files. The customer.xml file creates the left hand nav block:

 <customer_account translate="label">
   ...
    <reference name="left">
        <block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml">
            <action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action>

and then other layouts add links e.g. :

<customer_account>
    <!-- Mage_Newsletter -->
    <reference name="customer_account_navigation">
        <action method="addLink" translate="label" module="newsletter"><name>newsletter</name><path>newsletter/manage/</path><label>Newsletter Subscriptions</label></action>
    </reference>

So to edit the text of the Newsletter link, you need to edit the label node in newsletter.xml in your theme.

HTH,
JD

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文