Last active
March 3, 2016 16:27
-
-
Save herveguetin/11374425 to your computer and use it in GitHub Desktop.
Add custom active links to customer account navigation in Magento
This file contains hidden or 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
<sales_order_view> | |
<reference name="my_customer_account_navigation"> | |
<action method="setActiveLink"><name>orders</name></action> | |
</reference> | |
</sales_order_view> |
Thanks for sharing you method, I had same problem and i found your solution as first on google. But since i wanted some shorter way i found this solution:
<reference name="customer_account_navigation">
<action method="setActive">
<path>help/CustomerCare/</path>
</action>
</reference>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. Its an awesome trick :)