3

我已在页脚中显示所有链接,我只想在页眉中显示我的帐户链接

那我该怎么做。

我应该使用 cms 页面中的静态块还是 xml 文件中的块?

谁能帮帮我吗

提前致谢

4

2 回答 2

4

添加“我的帐户”链接的另一种方法转到app/design/frontend/default(或您的主题包)/(主题文件夹)/page/html/header.phtml。在此文件中,您可以添加您的自定义“li”标签,并可以为“我的帐户”放置一个链接,因为控制器将其移动到“我的帐户”页面。

在这里为您提供另一种方式:)

打开 theme/layout/customer.xml 文件,然后修改在所有页面上显示客户链接的部分,以包含链接主页以及指向您认为必要的其他客户服务页面的链接,例如“退货”(如果您得到很多这样的询问......)。

<default>

    <!-- Mage_Customer -->
    <reference name="top.links">
        <action method="addLink" translate="label title" module="customer"><label>Home</label><url></url><title>Home</title><prepare>true</prepare><urlParams/><position>5</position></action>
        <action method="addLink" translate="label title" module="customer"><label>My Account</label><url helper="customer/getAccountUrl"/><title>My Account</title><prepare/><urlParams/><position>94</position></action>
        <action method="addLink" translate="label title" module="customer"><label>Deliveries</label><url>deliveries</url><title>Deliveries</title><prepare>true</prepare><urlParams/><position>95</position></action>
        <action method="addLink" translate="label title" module="customer"><label>Returns</label><url>returns</url><title>Returns</title><prepare>true</prepare><urlParams/><position>96</position></action>
        <action method="addLink" translate="label title" module="customer"><label>Contact Us</label><url>contacts</url><title>Contact Us</title><prepare>true</prepare><urlParams/><position>97</position></action>
    </reference>
</default>

享受 :)

于 2012-05-18T17:37:54.233 回答
3

选项1:

布局文件用于在 top.links 块中显示链接。您可以在相关的 xml 文件中删除它们,并保留其他所有内容,例如,checkout.xml您有类似的内容:

 <default>
    <reference name="top.links">
        <block type="checkout/links" name="checkout_cart_link">
            <action method="addCartLink"></action>
            <action method="addCheckoutLink"></action>
    </block>
    </reference>
</default>

如果您删除该块,那么它们将不再在 top.links 块中显示这两个链接。

选项 2:

正如您所说,另一种方法是创建一个 cms 块并将其包含在您的标题中。要在模板文件中包含 cms 块,您可以使用

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('toplinksblock')->toHtml() ?>

或者,如果您想使用布局系统,请在布局文件中使用:

<reference name="footer">
  <block type="cms/block" name="sample_links">
    <action method="setBlockId"><block_id>sample_links</block_id></action>
  </block>
</reference>

然后在模板文件中:

<?php echo $this->getChildHtml('sample_links') ?>

选项 3:

或者只是编辑top.links.phtml.

于 2012-05-18T14:01:00.673 回答