我目前正在使用最新版本的 Magento 1.7.0.2。客户登录后,他们会看到典型的 2 列我的帐户详细信息,导航菜单位于左侧。我需要删除此导航,以便我的仪表板页面只有一列。我也不希望删除左侧导航后的空白区域。我已经尝试了 local.xml 中的内容,但发生的情况是我的帐户中的客户导航菜单已被删除,但任何带有左侧边栏的页面也会丢失该边栏。请注意,我正在运行自定义模板,并且唯一的 customer.xml 文件位于 app/design/frontend/base/default/layout 中。我的 local.xml 在 /app/design/frontend/default/custom_template/layout 中。
我将如何做到这一点以及我需要编辑的文件的路径是什么。任何帮助是极大的赞赏。这是customer.xml中客户我的帐户布局的代码
<customer_account translate="label">
<label>Customer My Account (All Pages)</label>
<!--remove name="catalog.compare.sidebar"/>
<remove name="sale.reorder.sidebar"/-->
<!-- Mage_Customer -->
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="content">
<block type="page/html_wrapper" name="my.account.wrapper" translate="label">
<label>My Account Wrapper</label>
<action method="setElementClass"><value>my-account</value></action>
</block>
</reference>
<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>Account Dashboard</label></action>
<action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>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>
<block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml">
<action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
<action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
<action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
</block>
<block type="catalog/product_compare_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
<remove name="tags_popular"/>
</reference>
</customer_account>