MyBB Community Forums

Full Version: Reputation System - tweak
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way in which I can allow only certain groups to give "Negative" reputation points?
Thank you.
This would need a plugin, no doubt Yaldaram will make one for you.
You'd need a plugin for that.
Is there any plugin available? Sad
There's a simple tweak for this;

Open ./reputations.php file and find;
if($mybb->settings['negrep'])

and Change it to;
$group = "3,4,6,8";
$groups = explode(",",$group);
if($mybb->settings['negrep'] || in_array($mybb->user['usergroup'],$groups))

You may Change 3,4,6,8 to the Usergroup IDs you wish to allow them to be able to send Negative Reps. But its a core file edit, if you upgraded your forum with this file changed then you'll need to edit the same file with the same procedure after Upgrade. Wink