Skip to content

Instantly share code, notes, and snippets.

@rafaelstz
Last active December 2, 2016 14:18
Show Gist options
  • Save rafaelstz/30c3b36bd58e26a8ef07 to your computer and use it in GitHub Desktop.
Save rafaelstz/30c3b36bd58e26a8ef07 to your computer and use it in GitHub Desktop.
Remover links da barra lateral "Minha Conta" no Magento.Arquivo yourPackage/YourTemplate/customer/account/navigation.phtml
<!-- Remove My account sidebar links Magento -->
<customer_account>
<reference name="left">
<action method="unsetChild">
<name>customer_account_navigation</name>
</action>
<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>
<action method="addLink" translate="label" module="customer">
<name>orders</name>
<path>sales/order/history/</path>
<label>My Orders</label>
</action>
</block>
</reference>
</customer_account>
<!-- List of all names for navigation links in account dashboard -->
account
account_edit
address_book
orders
billing_agreements
recurring_profiles
reviews
tags
wishlist
OAuth Customer Tokens
newsletter
downloadable_products
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment