kronnos,
Create a GLOBAL phrase variable "trader_rating" and give it the text "iTrader Rating" OR replace: $vbphrase[trader_rating]: with iTrader Rating: (either way will work)
In your postbit_legacy template:
FIND:
PASTE AFTER: (note x,x,x,x - these are your forum ID's)
PHP Code:
<if condition="in_array($forum[forumid], array(X,X,X,X))">
<if condition="($post[itrader_total] == '0')">
<div style="text-align:center;font-weight:bold;color:grey;">This user has no <a href="$vboptions[bbdir]/itrader.php?$session[sessionurl_q]u=$post[userid]">trader rating</a> score. <a href="$vboptions[bbdir]/itrader_feedback.php?$session[sessionurl_q]u=$post[userid]">Leave Feedback</a></div><br />
<else />
<if condition="($post[itrader_total] < '0')">
<div style="text-align:center;font-weight:bold;color:red;">This user has a negative <a href="$vboptions[bbdir]/itrader.php?$session[sessionurl_q]u=$post[userid]">trader rating</a> score of $post[itrader_total]! <a href="$vboptions[bbdir]/itrader_feedback.php?$session[sessionurl_q]u=$post[userid]">Leave Feedback</a></div><br />
</if>
<else />
<div style="text-align:center;font-weight:bold;color:blue;">This user has a positive <a href="$vboptions[bbdir]/itrader.php?$session[sessionurl_q]u=$post[userid]">trader rating</a> score of $post[itrader_total]! <a href="$vboptions[bbdir]/itrader_feedback.php?$session[sessionurl_q]u=$post[userid]">Leave Feedback</a></div><br />
</if>
<else />
</if>
<else />
</if>
I just tested this on my test server and it worked just fine. Just make sure the put the forum id's you want this to show up in in place of the x's.