This will put links to your Quotes, Mentions, Thread Tags in navbar on vB 3.x or vB 4.x
First for vB3.x
In your style go to edit templates open Navigation / Breadcrumb Templates / Navbar and search for the following code:
After that add the following code:
By doing that you will have put it in your Quick Links dropdown in your navbar.

Now for vB4.x
In your style go to edit templates open Navigation / Breadcrumb Templates / Navbar and search for the following code:
After that add the following code:
By doing that you will have put it in your Quick Links dropdown in your navbar.

Note: This will have to be done in each style you have
First for vB3.x
In your style go to edit templates open Navigation / Breadcrumb Templates / Navbar and search for the following code:
HTML:
$template_hook[navbar_quick_links_menu_pos4]
HTML:
<!--Start User Tags-->
<tr><td class="thead">User Tags</td></tr>
<tr><td class="vbmenu_option"><a href="member.php?u=$bbuserinfo[userid]&tab=quotes#quotes"id="quotes-tab">Quotes</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?u=$bbuserinfo[userid]&tab=mentions#mentions"id="mentions-tab">Mentions</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?u=$bbuserinfo[userid]&tab=usertags#usertags"id="usertags-tab">Thread Tags</a></td></tr>
<!--End User tags-->

Now for vB4.x
In your style go to edit templates open Navigation / Breadcrumb Templates / Navbar and search for the following code:
HTML:
{vb:raw template_hook.navbar_quick_links_menu_pos4}
HTML:
<!--Start User Tags-->
<tr><td class="thead">User Tags</td></tr>
<li>
<a onclick="return tabViewPicker(this);" href={vb:link member, {vb:raw bbuserinfo}}&tab=quotes#quotes"id="quotes-tab">Quotes
</a>
</li>
<li>
<a onclick="return tabViewPicker(this);" href={vb:link member, {vb:raw bbuserinfo}}&tab=mentions#mentions"id="mentions-tab">Mentions
</a>
</li>
<li>
<a onclick="return tabViewPicker(this);" href={vb:link member, {vb:raw bbuserinfo}}&tab=usertags#usertags"id="usertags-tab">Thread Tags
</a>
</li>
<!--End User tags-->

Note: This will have to be done in each style you have
