vbadvanced

change that in your admin panel and then in the vbadvanced modification... there should be a part about the navbar with the index.php etc etc now put there "forum/upsercp.php" now it should go to the forum usercp
 
dutchwii said:
i did, but no change. made usercp.php to forum/usercp.php etc. etc.

umm it´s your forum root called forum?

do this, it´s easy

in navbar template search

usercp.php
faq.php
calendar.php
memberlist.php
search.php(and all related to search.php like search.php?do=getnew )
and all you want to show in the vBadavanced,

then add this at the beginning
PHP:
$vboptions[bburl]

example
PHP:
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a></td>

with the code it will be

PHP:
<td class="vbmenu_control"><a href="$vboptions[bburl]/search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a></td>

what does the
PHP:
$vboptions[bburl]
this is a short way to put your domain + your forum root

example
Code:
http://www.example.com/forum

the same is $vboptions

do this with all you want to be show

search like this in navbar template

PHP:
<a href"

and add the $vboptions[bburl] at the beginning of code

example

PHP:
<a href"$vboptions[bburl]/

don´t forget the / at the end of $vboptions[bburl]

example
PHP:
<a href"$vboptions[bburl]/
 
Back
Top