I see many requests in this thread about how exactly to add a vBTube link to the navbar, so here goes:
METHOD #1: To add this to your
navbar:
look for:
Code:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
after add:
Code:
<td class="vbmenu_control"><a href="$vboptions[bburl]/vBTube.php$session[sessionurl_q]">$vbphrase[vBTube_title]</a></td>
METHOD #2: If you want to add it to "
QuickLinks" drop-down menu in your navbar:
look for:
Code:
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>
after add:
Code:
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/vBTube.php$session[sessionurl_q]">$vbphrase[vBTube_title]</a></td></tr>
NOTE: You do not need to do BOTH of the above edits - I provided both methods so people can either choose to put it directly in the navbar itself, next to the calendar link, or they can put it in the "QuickLinks" area of the navbar, in the "Miscellaneous" area, after the "Who's Online" link. If you want to do both edits/methods then there is no harm done, but it is not necessary.
Also, I added the $vboptions[bburl] to make sure that it will work in vbadvanced, or anywhere else outside the forum directory. If you do not have vbadvanced installed, then the code will still work also.