Quote:
Originally Posted by Dismounted
Avatars are not fetched by vBulletin by default - you need to add a plugin to fetch the plugin first.
|
Check:
PHP Code:
require_once('./includes/functions_user.php');
$userid = $vbulletin->userinfo['userid'];
$avatarurl = fetch_avatar_url($userid);
if (empty($avatarurl)) {
$show['avatar'] = false;
}
else {
$show['avatar'] = true;
}
Hook: global_start
Title: Avatar Forumhome
Order: 5
With my first condition ^^