PDA

View Full Version : Avatars in showthread


SpotMe
07-03-2002, 06:23 AM
How can I make it so noavatar.gif will appear as the default unless the member has selected an avatar?

Thanks,
SM

Admin
07-03-2002, 06:35 AM
In functions.php replace this:
if ($post[hascustomavatar] and $avatarenabled) {
$avatarurl="avatar.php?userid=$post[userid]&dateline=$post[avatardateline]";
} else {
$avatarurl="";
}
With this:
if ($post[hascustomavatar] and $avatarenabled) {
$avatarurl="avatar.php?userid=$post[userid]&dateline=$post[avatardateline]";
} else {
$avatarurl="images/noavatar.gif";
}

SpotMe
07-03-2002, 06:56 AM
*Edit* It worked perfectly! :)

Thank you very much for the code!

SM