如何在magento中创建自定义顶部链接?

时间:2015-02-25 14:06:25

标签: magento-1.9

我正在尝试创建自定义顶部链接。 我不知道如何在page.xml和任何其他布局文件中放置块。 我不知道Magento默认顶部链接是如何工作的。 如果我想创建自定义顶部链接,我该怎么办?

1 个答案:

答案 0 :(得分:0)

在page.xml中添加此代码 它应该是标题块的子块。

<block type="page/template_links" name="customlinks" as="customlinks"/>

在customer.xml中添加此代码

&#13;
&#13;
<default>
        <reference name="customlinks">
            <action method="addLink" translate="label title" module="customer">
				<label>Register</label>
				<url helper="customer/getAccountUrl"/>
				<title>Register</title>
				<prepare/>
				<urlParams/>
				<position>10</position>
			</action>
        </reference>
    </default>
&#13;
&#13;
&#13;

在header.phtml文件中添加此代码

&#13;
&#13;
<?php echo $this->getChildhtml('customlinks') ?>
&#13;
&#13;
&#13;

它会显示链接&#39;注册&#39;