我的magento商店里有一个自定义模块。它目前使用默认的2列布局,左侧导航栏为magento左侧边栏。
如何在左侧边栏中进行客户帐户导航?我模块的当前xml文件是:
earnings.xml
<?xml version="1.0"?>
<layout version="0.1.0">
<earnings_index_index>
<reference name="content">
<block type="earnings/earnings" name="earnings" />
</reference>
</earnings_index_index>
</layout>
答案 0 :(得分:1)
解决了:
<earnings_index_index translate="label">
<update handle="customer_account"/>
<reference name="my.account.wrapper">
<block type="core/template" name="earnings" template="earnings/earnings.phtml" />
</reference>
</earnings_index_index>
答案 1 :(得分:0)
以下是在我的帐户部分添加指向左侧导航的链接的代码段。
<customer_account translate="label">
<reference name="customer_account_navigation">
<action method="addLink" translate="label"><name>nameoflink</name><path>path/index/index/</path><label>Custom Account Link</label></action>
</reference>
</customer_account>
希望这会对你有所帮助。