Adding a link in the profile dropdown

Matthew2D

Well-known member
Hello. I tried adding a link to the profile dropdown, but it didn't work.

I used this code.
Code:
<li><a href="http://callofdutybox.com/xfsignatures/">Signature Shop</a></li>
 
Hello. I tried adding a link to the profile dropdown, but it didn't work.

I used this code.
Code:
<li><a href="http://callofdutybox.com/xfsignatures/">Signature Shop</a></li>
Works ok for me.

Template: navigation_visitor_tab

Find:

Code:
<li><a href="{xen:link account/ignored}">{xen:phrase people_you_ignore}</a></li>

Below add:

Code:
<li><a href="{xen:link xfsignatures}">Signature Shop</a></li>

Note that the best way to form the URL is using {xen:link xfsignatures} which is much better, especially if your board URL ever changes for whatever reason.
 
Top Bottom