Log in

View Full Version : allowing avatar to only display once per thread?


michealo
08-06-2002, 12:58 PM
i did multiple searches here and couldnt find anything to do this

my forum has a "journal" section where people start thier own specific thread, and only THEY can respond in that thread, with new entries.

it works fabulous, but it looks kinda rediculous seeing the same persons avatar the entire length of the thread with every reply

i just need the member's avatatar so show up for the 1st post and not any additional reply

i only need this done inside a specific sub-forum

thanks in advance

michealo
08-09-2002, 05:09 PM
*bump*

anyone? thanks

Tim Wheatley
08-09-2002, 10:30 PM
I'd be interested in this too if it's done.

C'mon - join the march people! :D

Riddel
08-10-2002, 04:05 AM
hmm maybe you can make a special template for that forum and take out the avatars from the postbits all together?

[D]Vincent
08-10-2002, 04:28 AM
There is an allow sigs once per thread, maybe someone could edit the code to work with avatars also.

michealo
08-12-2002, 03:34 PM
one last hope

thanks

Logician
08-22-2002, 08:30 AM
edit admin/functions.php, find:


if ($avatarurl=="" or ($bbuserinfo[userid]>0 and !($bbuserinfo[showavatars]))) {
$post[avatar]="";
} else {
eval("\$post[avatar] = \"".gettemplate("postbit_avatar")."\";");
}


Replace it AS:


$log_arr_post_userid=$post[userid];
if ($shown_avatar) {$testavatar1=in_array($log_arr_post_userid,$shown _avatar);}
if ($avatarurl=="" or ($forum[forumid]==X AND $testavatar1) or ($bbuserinfo[userid]>0 and !($bbuserinfo[showavatars]))) {
$post[avatar]="";
} else {
eval("\$post[avatar] = \"".gettemplate("postbit_avatar")."\";");
$shown_avatar[]=$post[userid];
unset($testavatar1);
}


Replace X with your forumid in which you dont want multi-avatars of the same user..

In functions.php find:


global $bbuserinfo,$session,$ignore,$cookietimeout;

Replace it as:

global $bbuserinfo,$session,$ignore,$cookietimeout,$shown _avatar;

Edit showthread.php, find


if ($action=="showpost") {


after that add:

$shown_avatar=array();


That's all..

michealo
08-22-2002, 09:40 AM
Parse error: parse error in /home/sites/home/web/forums/admin/functions.php on line 160

Fatal error: Call to undefined function: getuserinfo() in /home/sites/home/web/forums/admin/sessions.php on line 323

Logician
08-22-2002, 10:36 AM
try now

michealo
08-22-2002, 04:38 PM
thanks for all the help so far, logician

i tried the updated code, no errors this time BUT

i made sure i changed the forum id to 31, and checked that forum, and the avatars still display like normal in every post

i even made a test post in my thread, and my avatar still displayed

Logician
08-22-2002, 07:15 PM
sorry about that, my bad.. Reapply the code, I corrected it and tested it, it works now..

michealo
08-22-2002, 07:33 PM
genius, logician

pure genius

thank you