For those having issues with vBadvanced...
1) Go back and follow the instructions by fn9mm for adding a global variable to CMPS
here.
2) If you are using custom avatars and are having a problem with the image path (because your CMPS is in the root folder or you are using vBa Links or PhotoPost vBGallery, etc.) then look for...
PHP Code:
// not using a predefined avatar, check for custom
if ($avatar = $db->query_first("SELECT dateline, userid FROM " . TABLE_PREFIX . "customavatar WHERE userid = " . $vbulletin->userinfo[userid] . ""))
{
// using a custom avatar
$navbaravatarurl = ($vbulletin->options['usefileavatar']) ? "" . $vbulletin->options[avatarurl] . "/avatar$avatar[userid]_" . $vbulletin->userinfo[avatarrevision] . ".gif" : "" . $vbulletin->options[bburl] . "/image.php?u=" . $vbulletin->userinfo['userid'] . "&dateline=" . $avatar['dateline'] . "";
$navbaravatar = "<img src=\"$navbaravatarurl\" alt=\"Your Avatar\" border=\"0\" />";
... and change it to below: (You'll be adding
" . $vbulletin->options[bburl] . "/ to the image URL)
PHP Code:
// not using a predefined avatar, check for custom
if ($avatar = $db->query_first("SELECT dateline, userid FROM " . TABLE_PREFIX . "customavatar WHERE userid = " . $vbulletin->userinfo[userid] . ""))
{
// using a custom avatar
$navbaravatarurl = ($vbulletin->options['usefileavatar']) ? "" . $vbulletin->options[avatarurl] . "/avatar$avatar[userid]_" . $vbulletin->userinfo[avatarrevision] . ".gif" : "" . $vbulletin->options[bburl] . "/image.php?u=" . $vbulletin->userinfo['userid'] . "&dateline=" . $avatar['dateline'] . "";
$navbaravatar = "<img src=\"" . $vbulletin->options[bburl] . "/$navbaravatarurl\" alt=\"Your Avatar\" border=\"0\" />";
Note, though, that if you're using custom avatars and you've changed the path from the default that the step #2 above
may be different for you.