Status
Not open for further replies.

Ozzy47

Former Developer
Customer
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:

HTML:
$template_hook[navbar_quick_links_menu_pos4]
After that add the following code:

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-->
By doing that you will have put it in your Quick Links dropdown in your navbar.

qlinks.png

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}
After that add the following code:

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-->
By doing that you will have put it in your Quick Links dropdown in your navbar.


qlinks2.png

Note: This will have to be done in each style you have :cool:
 
Status
Not open for further replies.

Legacy Advanced User Tagging

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
2,502
Customer rating
0.00 star(s) 0 ratings
Back
Top