Sarathlal N

Remove top links one by one in Magento 1 using local.xml file

Just use below code snippet in theme’s local.xml file and it will remove all Magento top links one by one.

 <default>
 <reference name="root">
 <reference name="top.links">
 
 <!-- Removes 'My Account' link -->
 <action method="removeLinkByUrl"><url helper="customer/getAccountUrl"/></action>
 
 <!-- Removes 'Wishlist' link -->
 <!-- for Magento 1.3.x -->
 <action method="removeLinkByUrl"><url helper="wishlist/"/></action>
 
 <!-- for Magento 1.4.x -->
 <remove name="wishlist_link"/>
 
 <!-- Removes 'My Cart' AND 'Checkout' links-->
 <remove name="checkout_cart_link"/>
 
 <!-- To re-add 'My Cart' or 'Checkout' after removing both 
 <block type="checkout/links" name="checkout_cart_link_custom">
 <action method="addCartLink"></action>
 <action method="addCheckoutLink"></action>
 </block>
 -->
 
 </reference>
 </reference>
 </default>
 
 <customer_logged_out>
 <!-- Removes 'Log In' link -->
 <reference name="top.links">
 <action method="removeLinkByUrl"><url helper="customer/getLoginUrl"/></action>
 
 <!-- Remove Register link --> 
 <action method="removeLinkByUrl"><url helper="customer/getRegisterUrl"/></action>
 
 </reference>
 </customer_logged_out>

 <customer_logged_in>
 <!-- Removes 'Log Out' link-->
 <reference name="top.links">
 <action method="removeLinkByUrl"><url helper="customer/getLogoutUrl"/></action>
 </reference>
 </customer_logged_in>

Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!

Recent Posts

  1. WordPress Transients Explained - A Developer's Guide to Site Performance
  2. Behind the Click - The Hidden Journey of Your Web Requests
  3. Automating Code Linting with GitHub Actions for WordPress Plugins
  4. Comprehensive Guide to Linting PHP, JavaScript, and CSS in WordPress Plugins Using Composer
  5. The Ultimate Guide to Indexing in Database Design

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.