MyBB Hacks

Full Version: Thread Rating Number?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,

Does anyone know how to display the total amount of thread votes on forumdisplay, under the stars?

See my board Survival Daddy
Maybe like this:

Code:
{$thread['numratings']}

(06-23-2011 07:04 AM)RateU Wrote: [ -> ]Maybe like this:

Code:
{$thread['numratings']}


Thanks RateU, that works...

Now, when there's no votes it shows "0",
how can I use "if else" to remove the "0" when no votes present?
Ok, I've got it working now Tongue

Here's how I did it:

Quote:<if $thread['numratings'] < 1 then>
<span class="smalltext"><font color="#585858">N/A</font></span>
<elseif $thread['numratings'] > 0 then>
<span class="smalltext"><font color="#585858">({$thread['numratings']})</font></span>
<else />
</if>

Thanks again RateU for getting me on the right track.
Reference URL's