Quote:
Originally Posted by ericgtr
Okay, I put the full URL in the paths under the style options and the forum images are now working, thanks. I have a custom header and have to work out the paths to the images as they are not set in the style options. Also, my forum root is forum.php not index.php so my the link back to my forum says http://www.guitarblast.com/groups/forum.php, again we don't want groups in there.
Here is how my cofig is set:
PHP Code:
chdir("/home/guitar/public_html");
|
sadly the forum thing in the navbar is not something i forsaw, in fact if it was upto me, the navbar would have the groups at the root and not the forums, however jelsoft

:ermmm:

anyhoo to fix that you're gonna have to do a file edit.
in your ROOT/includes/functions_grps.php find
PHP Code:
array(
// navbar replacements
'usercp.php',
and replace with
PHP Code:
array(
// navbar replacements
'usercp.php',
'forum.php',
now find in the same file
PHP Code:
array(
// navbar links
$vbulletin->options['bburl'] . '/usercp.php',
and replace that with
PHP Code:
array(
// navbar links
$vbulletin->options['bburl'] . '/usercp.php',
$vbulletin->options['bburl'] . '/forum.php',
now save the file and upload it and you're sorted.