Log in

View Full Version : how to make text show/not show in postbits


a4toronto
05-21-2002, 10:41 PM
i created a new post field, post.flag. depending on what the flag is set to (1 or 0) i would like an image to show up in the post bits under the user's post count.

any ideas?

Xenon
05-21-2002, 10:43 PM
edit funtions.php

find function getpostbit

add the lines:

if($post[flag]==1) {
$post[image]="<img src=.......";
} else {
$post[image]="";
}


and in the postbittemplate add the line $post[image] after the postcounter

a4toronto
05-22-2002, 02:00 PM
woohoo! that's the last tidbit i need! thanks muchly.

a4toronto
05-22-2002, 11:03 PM
it works!

how would i change it if i only wanted moderators to see it?

Xenon
05-23-2002, 09:17 AM
hmm, not sure, but i think it should work:


if($post[flag]==1 && ($bbuserinfo[usergroupid]==5 || $bbuserinfo[usergroupid]==6 || $bbuserinfo[usergroupid]==7)) {
$post[image]="<img src=.......";
} else {
$post[image]="";
}


for mods, admins and supermods to see it

a4toronto
05-23-2002, 12:57 PM
i see what you're trying to do. this might work....will let you know.