[uB]Adding links into the navbar

uBulletin

New Member
Added for 3.8.x !
In beta stage couse of the beta version, this will be taken out of beta when vBulletin 3.8.X is out of beta

Demo 1:

Colzdragon Forum - Powered by vBulletin

Okay, iv'e seen some mods that did not edit the navbar for some reason
Please dont flame me couse of the basic stuff, this is for people who dont have the knowledge of HTML


This has been tested on the Default style. It should work on templates WITHOUT a image navbar!


This hasent been tested on the Fox styles, so use it on your own risk there


Go to your Panel and select Styles & Templates then select Style Manager
go to the Navbar template

Find:

PHP:
  <if condition="$show['registerbutton']">
<td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td> 
</if>

Under that add:

PHP:
<if condition="$show['member']">
<td class="vbmenu_control"><a href="[link]">text</a></td></if>

If you want to make it avalible to guests add this below the code above:

PHP:
                        <td class="vbmenu_control"><a href="index.php">portal</a></td>
 
Top