magento 1.7缺少左侧客户帐户导航

时间:2018-06-12 02:25:35

标签: magento magento-1.7

我正在运行Magento 1.7并且我添加了侧边栏导航(通过代码)扩展,不幸的是,左侧客户帐户导航丢失了,我无法将其取回

我可以在左侧使用侧边栏导航(通过字符串)扩展名  类别导航而非左客户帐户导航

请帮帮我

1 个答案:

答案 0 :(得分:1)

我找到了上述问题的解决方案,在codnitive / sidenav.xml搜索客户帐户并找到<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>My Account</label></action>

                <action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>Edit Account Information</label></action>

                <action method="addLink" translate="label" module="customer"><name>address_book</name><path>customer/address/</path><label>Address Book</label></action>

            </block> 

现在它正常工作。