magento 1.7 左客户帐户导航丢失

magento 1.7 Left customer account navigation is missing

我是 运行 Magento 1.7,我添加了侧边栏导航(通过 codnitive)扩展,不幸的是,左客户帐户导航丢失,我无法取回它

我可以在左侧使用侧边栏导航(通过 codnitive )扩展吗 类别导航而不是左侧客户帐户导航

请帮帮我

我找到了解决上述问题的方法,在 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> 

现在可以正常工作了。