I'm wondering if it's OK to nest conditionals in this manner:
<if condition="$vboptions[itrader_profile] == '1' ">
<if condition="is_member_of($bbuserinfo,20,6,5,18,15)" >
<if condition="$post['userid']">
<div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>) $post[itrader_percent]</div>
</if>
</if>
</if>
The idea is to show iTrader links and stats only for members who are in the appropriate usergroups, along with the other limitations above.
|