Quote:
Originally Posted by Howell
I used
Code:
<if condition="$vboptions[itrader_profile] =='1'">
Rather than
Code:
<if condition="$post['userid']">
Then if you have the mod disabled it wont appear. 
|
If you use the code you specified, it will ONLY show up if a member has only 1 iTrader rating (if at all - I tried yours and it wouldn't show up for anyone having a rating). If you want the information to show up in the postbit when they have a rating and NOT to show up when they don't have, then use the following:
PHP Code:
<if condition="$post[itrader_total] != '0'">
<div>$vbphrase[trader_rating]: <b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b></div></if>