Created
October 2, 2013 18:38
-
-
Save rickbenetti/6798432 to your computer and use it in GitHub Desktop.
Para remover links do menu dentro da área de usuário no magento basta adicionar o unset no arquivo em:
app/design/frontend/[NomePacote]/default/template/customer/account/navigation.phtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $_count = count($_links); ?> | |
<?php unset($_links['recurring_profiles']); ?> | |
<?php unset($_links['billing_agreements']); ?> | |
<?php unset($_links['reviews']); ?> | |
<?php unset($_links['tags']); ?> | |
<?php unset($_links['OAuth Customer Tokens']); ?> | |
<?php unset($_links['newsletter']); ?> | |
<?php unset($_links['downloadable_products']); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment