if i wanted to use this code
PHP Code:
<if condition="is_member_of($bbuserinfo, 6)">
<td class="vbmenu_control"><a href="$vboptions[homeurl]/LINK/">LINK</a></td>
</if>
only have it fr like usergroups 5, 6 , 7, 10, 16 how would i go about that
Would have to put in a line for each group or is they a way to combine them
*edit* I think I have Figured it out Using this Code
PHP Code:
<if condition="(is_member_of($bbuserinfo, 5)|| is_member_of($bbuserinfo, 6) || is_member_of($bbuserinfo, 7) || is_member_of($bbuserinfo, 10) || is_member_of($bbuserinfo, 16))">
<td class="vbmenu_control"><a href="$vboptions[homeurl]/LINk/">LINK</a></td>
</if>
If anyone sees a problem with that let me know