How to manually add a link to Navigation template

Andy.N

Well-known member
I installed digitalpoint's Geop IP usermap and he mentioned to add the link in navigation bar.

I like to add a link to /community/usermap/ on the navigation, under Members, and between Current Visitors and Recent Activity

Thanks
 
This post should help: http://xenforo.com/community/threads/creating-new-website-tabs-and-links.12548/#post-165579

Specifically you need to add an entry between these two lines of code in the <!-- members --> section:
Code:
<li><a href="{xen:link online}">{xen:phrase current_visitors}</a></li>
<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>


Something like this:
Code:
<li><a href="{xen:link online}">{xen:phrase current_visitors}</a></li>
<li><a href="{xen:link usermap}">{xen:phrase usermap}</a></li>
<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>
 
Top Bottom