Monday, 16 March 2015

Remove My Application Link from Customer Account Page in magento

Monday, 17. December 2012
If you ever wanted to remove the “My Application” link from customer’s My Account page here is the layout file to look for
app/design/frontend/[YOUR PACKAGE]/[YOUR PACKAGE]/layout/oauth.xml
Around line 118 – you will see a block of code similar to snippet below which you can simply comment it out.
<!-- My Applications-->
<customer_account>
<reference name="customer_account_navigation">
<action method="addLink" translate="label" module="oauth">
<name>OAuth Customer Tokens</name>
<path>oauth/customer_token</path>
<label>My Applications</label>
</action>
</reference>
</customer_account>



No comments:

Post a Comment