Magento – Remove link from navigation

linkmagento-1.9navigation

Please anyone help me on this. I want to remove the top link from navigation menu, i found the solution but it removes only parent link, i want tp remove specific link from menu I.e. if users click on it they won't be directed to anywhere.

Best Answer

In Magento Main Menu Consider has a Categories, Sub Categories.

If you want to remove that you can manage Categories form the Magento Banked it self like Include in Menu then Select No. You can set this setting form Magento Back-end Catalog >> Category >> Select any Category

But If you want to add any custom in Header then You need to edit the code in Magento topMenu.phtml file.

Add the Your link in <ul> Tag.

Add The For Example demo.

<li><a href="<?php echo $this->getUrl(); ?>"><?php echo $this->__('Home');?></a></li>

Let me know if you have any query.

Related Topic