Global_start (hook)
Content:
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;
}
And add this in the template to custom page
Code:
<if condition="$show['avatar']">
<img src="$avatarurl[0]">
<else />
<img src="your_image_if_no_avatar" border="0" alt="My avatar" />
</if>
http://www.vbulletin-ressources.com/...ead.php?t=6636