MyBB Community Forums

Full Version: Rating Threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I disable thread rating completely? I don't want the stars to be visible at all.

Oh, and I'd also like to get rid of the:

Quote:User(s) browsing this forum: Mike
Under forum management, there is an option under additional forum options,

Yes, allow threads to be rated

Untick.

--------------------------------------

Admin panel > Configuration > Search for 'Browsing'

Users Browsing this Forum
Here you can turn off the 'users browsing this forum' feature.

Select no.
Thank you very much for #2. But as for #1, I have to do it manually for every forum?
Yes. The only alternative is to remove {$ratethread} from a few templates, but that's not the best option as you may want to enable it again in future.
Thanks a lot for that!
To turn off ratings for all forums, you can run this query in phpMyAdmin:

UPDATE `mybb_forums` SET `allowtratings` = '0' WHERE `allowtratings` = '1' 
Actually, on second thought, I'm going to keep it active. Smile

But does anyone know if there's a modification to have a user image? There's a modification for that on vB.. Instead of text as a username in a postbit, it shows an image that the user uploads.
(2010-09-04, 01:56 AM)AJS Wrote: [ -> ]To turn off ratings for all forums, you can run this query in phpMyAdmin:

UPDATE `mybb_forums` SET `allowtratings` = '0' WHERE `allowtratings` = '1' 

For anyone that wants to do this, you'll also need to rebuild the forums cache in the ACP after running this to get it to work.