Quote:
Originally Posted by Realm of Horror Comics
Is it possible to add the user's avatar yet?
Does anyone know how to do this?
|
In
login_inc.php locate:
PHP Code:
// We check if user is logged in
Above this place:
Code:
if ($vbulletin->userinfo['userid'])
{
require_once('./includes/functions_user.php'); //make sure we have the function we need
$navbar_ava = fetch_avatar_url($vbulletin->userinfo['userid']);
if (!is_array($navbar_ava))
{
$navbar_ava[] = "/images/misc/noavatar.gif";
}
}
In
login_inc.php locate:
PHP Code:
// If Logged in display welcome back message
Below this place:
Code:
echo "<img src='http://www.yoursite.com/forum/$navbar_ava[0]' align='left' />";
Upload the attached noavatar.gif image to your images/misc folder.
This will show the User's current avatar, and if the User has no avatar specified, it'll show the no avatar image. Don't forget to change the "yoursite.com" to reflect your forum.
See attached for Screenshots.