So, I'm still trying to figure out why this doesn't work...
I want this profile field to show in the postbit to those who are a member of both usergroups 2 and 15. No matter what group the poster is in.
Now I'm trying variations on a theme. I tried doing this but I don't know if it's even possible:
Code:
<if condition="is_member_of($bbuserinfo, 2) AND is_member_of($bbuserinfo, 15)">
<div>
<if condition="$post['field5']">
a.k.a.: $post[field5]
</if>
</div>
</if>
It doesn't return any errors when I save it but it also does not show the profile field to those members. Can an "AND" be used in this fashion?