Wow, I'm glad I found this. It is exactly what I have been looking for.
PHP Code:
<if condition="is_member_of($bbuserinfo, 6)">
If in group 6, show this...
<else />
...or else, show this.
</if>
What's the best way to do multiple groups? Would this work?
PHP Code:
<if condition="(is_member_of($bbuserinfo, 6)) OR (is_member_of($bbuserinfo, 7))">
If in group 6 or 7, show this...
<else />
...or else, show this.
</if>
I tested that out and it appears to work and no errors. Just wondering if there is a better way.