MyBB Community Forums

Full Version: Removing thread rating
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

I would like to know if there is a way to remove thread rating?

I would like to remove to option to rate thread, and not display it as well.


Thanks.
There is a setting, but you need to go through and set it for all your forums. Go ACP > Forums & Posts > Select forum > Edit forum settings > Untick "Yes, allow threads to be rated".

You can also run this query to disable it on all forums:
UPDATE `mybb_forums` SET `allowtratings` = '0' WHERE `allowtratings` = '1' 
Note you'll also need to rebuild the forums cache in the ACP before that query will take effect.