Gotcha.
Looks stock?
In the navbar template, find this:
Quote:
<if condition="$bbuserinfo['userid']">
<td id="usercptools" class="vbmenu_control"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td>
</if>
|
Below it will be the listing of items like these:
Quote:
<td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a></td>
|
To add in your new link, figure out where you want it and add like this:
Quote:
<td class="vbmenu_control"><a href="URL" rel="nofollow">$vbphrase[your_phrase]</a></td>
|
... where URL = the link and your_phrase = the title you want displayed - you need to add this in the phrases (or you can forego the $vbphrase[whatever] and just call it what you want in plain text).
The rel="nofollow" is a search engine thing telling spiders not to follow the link. Use as appropriate.
There are other conditionals you can add (like admin, member) -- but this will display the link for anyone who has rights to the quicklinks.
Edit to add: The second skin is nice too, but I really like the extra touches on the design on the first one. When I get older, I will start complaining about stuff.