Quote:
Originally Posted by Ntfu2
Here is a basic one for you
Code:
<if condition="$bbuserinfo[usergroupid] == XX">
CHANGE XX TO ADMIN USER GROUP
</if>
<if condition="$bbuserinfo[usergroupid] == X">
CHANGE X TO MODERATOR USER GROUP
</if>
|
That's not what I meant, I use that one all the time.
But I need the one where in the posters post (based on usergroups) it shows something only in their posts.
Thanks anyway.
Quote:
Originally Posted by noppid
I'm thinking he meant the posters group, not the viewers group is the trigger.
Anywho, I don't think the poster group in in there, but ya can make a hook and preprocess with something like...
if( is_member_of(6,$post[userid]) ) $is_admin = true;
if( is_member_of(7,$post[userid])) $is_mod = true;
There may be better ways.
|
I don't understand that but thanks anyway.