How to edit the "Quick Links"

th13rteen

New Member
Hey does anyone know how I could edit the "Quick Links" menu. You can look at my attachment if you don't understand what I'm talking about. I wanted to add a few extra links into it.

Thanks guys.
 
Remember: always make a backup

In navbar template search for:
Code:
$vbphrase[quick_links]
links are below that!

If you can't find it in navbar some templates have the navbar coding in the header section so just find it via style manager.

to add a link:
Code:
<tr><td class="vbmenu_option"><a href="http://yourlink.com">Link</a></td></tr>
 
Okay played around for A bit and I got it:

Open the navbar template
Find:
PHP:
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>

Add this below:

PHP:
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="YOUR LINK HERE">URL NAME</a></td></tr></if>

change YOUR LINK HERE and URL NAME to your values

You can use this code as many times as you want
 
Back
Top