Magento我的帐户新页面

时间:2015-12-18 09:03:36

标签: magento custom-pages

我想在我的帐户部分添加新页面。我需要在此页面中放置一个带有一些自定义逻辑的iframe。

我尝试在下面的部分添加链接。

{{1}}

但它会产生404错误。

1 个答案:

答案 0 :(得分:1)

Use this 
 <customer_account>        
        <reference name="customer_account_navigation">           
        <action method="addLink" translate="label" module="modulename">
            <name>Tab Name</name>
            <path>path/index/index</path>
            <label>Tab Info</label>
        </action>      
    </reference>    
</customer_account>  
    <modulename_index_index>
    <update handle="customer_account"/>
    <reference name="my.account.wrapper">    
 <block type="blockname/blockname" name="blockname" template="file.phtml" />
        </reference>    
    </modulename_index_index>