I made a few little template additions to my site to help better promote the trade rating system, you can see them in action at
www.scubaboard.com/forumdisplay.php?f=213 (view any thread). To add this to your site you need to make just two small changes.
1) modify your phpinclude_start template by adding the following code (each number is the ID of a classified forum)
PHP Code:
$classified_forumids = array(1,2,3,...);
2) modify your postbit or postbit_legacy template by finding
PHP Code:
<!-- message -->
<div>$post[message]</div>
<!-- / message -->
before this add
PHP Code:
<if condition="in_array($forum[forumid], $GLOBALS[classified_forumids])">
<if condition="$post[ratetradetotal] != 0">
<if condition="$post[ratetradetotal] < 0">
<div style="text-align:center;font-size:12px;color:red;font-weight:bold;">Negative: This user has <a href="/traderratings.php?$session[sessionurl]u=$post[userid]" style="color:red;">trader rating</a> of $post[ratetradetotal]!</div>
<else />
<div style="text-align:center;font-size:12px;color:blue;font-weight:bold;">Positive: This user has <a href="/traderratings.php?$session[sessionurl]u=$post[userid]" style="color:blue;">trader rating</a> of $post[ratetradetotal]!</div>
</if>
<else />
<div style="text-align:center;font-size:12px;color:green;font-weight:bold;">Neutral: This user has no <a href="/traderratings.php?$session[sessionurl]u=$post[userid]" style="color:green;">trader rating</a> history!</div>
</if>
<div style="text-align:center;font-size:12px;"><a href="/traderratings.php?u=$post[userid]&do=feedbacknew">Leave feedback for $post[username]</a></div><br />
</if>
This will show the user's trade rating status in the default colors with a link to leave them feedback. If you make any improvements please post them back here. Also, I did not use language phrases to keep this simple, if you want to add them yourself it's not hard but I can help if you need.
This is an amazing addon and I can't wait to see what comes of it... thank you!