Hello guys.!
I need to add a new menu option on the top menu in JM Asenti.
here is a screeshot of what I need to add
thanks to all!
rgds!
1 answer
hi rcerrato,
For example you want to add a link in that position and that link directs to bbc.com site, for example, you can try as following
open the layout file of app\design\frontend\default\jm_asenti\layout\page. xml you look for this tag
HTML Code:
<!--Display category on right--> <reference name="right"> </reference>
just add below it this defined tag
HTML Code:
<reference name="top.links"> <action method="addLink" translate="label title"><label>BBC</label><url>http://bbc.com/</url><title>ext</title><prepare/><urlParams/><position>101</position></action> </reference>
This would help to add a link to the bbc.com at that place, you can change the label and the url there to your preferences.