
02-13-2006, 10:08 PM
|
 |
|
|
Join Date: Aug 2005
Location: UK
Posts: 73
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by acidburn0520
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.
|
Sweet! That did it.
Thanks!
|