View Full Version : Guest & No avatar Hack re-visited and better then ever
Does anyone think they could put the code together so that members who do not have an avatar secleted when they post it will show the no avatar selected avatar. Also when guests post on the forum as their avatar it shows the guest avatar? I know this doesn'tm ake much sense but I'm very tired, any help would be great, I know this will not be great for bandwith but please. Thanks! ;)
Admin
12-18-2001, 12:01 PM
In functions.php, find this:
if ($post[hascustomavatar] and $avatarenabled) {
$avatarurl="avatar.php?userid=$post[userid]&dateline=$post[avatardateline]";
} else {
$avatarurl="";
}
and add the path to the new avatar in the $avatarurl="" statement (between the " and ").
Now replace this:
$post[posts]="N/A";
$post[avatar]="";
with this:
$post[posts]="N/A";
$avatarurl="your avatar url!";
if ($avatarurl=="" or ($bbuserinfo[userid]>0 and !($bbuserinfo[showavatars]))) {
$post[avatar]="";
} else {
eval("\$post[avatar] = \"".gettemplate("postbit_avatar")."\";");
}
Thanks Chen! I'll try it out right away! Thanks Again!
Ok well it worked great, but when a guest goes to post it still has options to email them and add sig, how can I remove those from postbit if it's a guest? what code would that take. Or should I post another request cause you have helped me already, and thanks Chen! your always a great help.
Admin
12-18-2001, 03:33 PM
It shouldn't show these links - was it that way even before you applied this hack?
I never looked at it nor allowed guests to post on my board. So when I went I was surprised to see those there because they have no email on the board entered nor would they have a signature.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.