MyBB Community Forums
Vote Count Request - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Resources (https://community.mybb.com/forum-8.html)
+--- Forum: MyCodes (https://community.mybb.com/forum-117.html)
+--- Thread: Vote Count Request (/thread-104067.html)



Vote Count Request - Article Chase - 2011-09-17

Hi everyone,

I'm looking for a mod or plugin that shows the amount of votes a thread has received.

The amount of votes appear under the stars the thread has accrued.

Ie: The thread has 4 stars but has had 16 votes.

Thanks for your help in advance.


RE: Vote Count Request - Article Chase - 2011-09-17

(2011-09-17, 01:13 PM) Wrote: But why you have posted it in mycode section insted of plugin support section? Undecided

Ooops my confusion!

If a mod can move this thread for me Smile

Thanks


RE: Vote Count Request - Yaldaram - 2011-09-17

(2011-09-17, 01:13 PM) Wrote: But why you have posted it in mycode section insted of plugin support section? Undecided

That's not related to "Plugin" support forums either. Its General Support thread.

Go to: ACP > Templates > Your theme's templates > Showthread Templates > showthread_ratethread > and find;
<strong style="float: left; padding-right: 10px;">{$lang->thread_rating}</strong>
and Change it into;
<strong style="float: left; padding-right: 10px;">{$lang->thread_rating}<br/>Total Rates: {$thread['numratings']}</strong>

It should become like;
   


RE: Vote Count Request - Article Chase - 2011-09-17

(2011-09-17, 01:42 PM)Yaldaram Wrote:
(2011-09-17, 01:13 PM) Wrote: But why you have posted it in mycode section insted of plugin support section? Undecided

That's not related to "Plugin" support forums either. Its General Support thread.

Go to: ACP > Templates > Your theme's templates > Showthread Templates > showthread_ratethread > and find;
<strong style="float: left; padding-right: 10px;">{$lang->thread_rating}</strong>
and Change it into;
<strong style="float: left; padding-right: 10px;">{$lang->thread_rating}<br/>Total Rates: {$thread['numratings']}</strong>

It should become like;

Thank you very much Yaldaram Smile +1 on your rep
(2011-09-17, 04:04 PM)Article Chase Wrote:
(2011-09-17, 01:42 PM)Yaldaram Wrote:
(2011-09-17, 01:13 PM) Wrote: But why you have posted it in mycode section insted of plugin support section? Undecided

That's not related to "Plugin" support forums either. Its General Support thread.

Go to: ACP > Templates > Your theme's templates > Showthread Templates > showthread_ratethread > and find;
<strong style="float: left; padding-right: 10px;">{$lang->thread_rating}</strong>
and Change it into;
<strong style="float: left; padding-right: 10px;">{$lang->thread_rating}<br/>Total Rates: {$thread['numratings']}</strong>

It should become like;

Thank you very much Yaldaram Smile +1 on your rep

Worked a charm Smile Modified it also to fit under the stars on the main thread page
Like this... crude but it worked Smile Want to give you 10 rep points but I can't. Just click my signature and you can see what I mean.

<td>{$rating}</td>
<td width="20"><small>{$lang->thread_rating}<br/><font color="white">Votes:</font color> 
<center>{$thread['numratings']}</center></small></td>