PDA

View Full Version : How do I limit signature size per post user's usergroup?


Citizen
01-19-2010, 01:42 PM
I tried this:

<vb:if condition="is_member_of($bbuserinfo, 6,7,3)">

But that goes off of the member that is logged in, right? I want a condition for the user of each post.

Lynne
01-19-2010, 04:29 PM
If you want the condition for the person who's post you are viewing, then use $post instead of $bbuserinfo.

Citizen
01-19-2010, 05:02 PM
Thanks!