MyBB Community Forums

Full Version: Prevent Registered User group from giving Neg Rep
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to let

the registered user group only be able to give

+1 and Neutral.

No -1?
You will probley need a plugin for that.
ACP > Configuration > Reputation
[Image: TeJaM.png]

Check off negative rep.
(2012-11-13, 01:15 AM)Nobby Wrote: [ -> ]ACP > Configuration > Reputation
[Image: TeJaM.png]

Check off negative rep.

He only said the registered user group, not for the whole board.
(2012-11-13, 03:24 AM)MYBB GHOST Wrote: [ -> ]
(2012-11-13, 01:15 AM)Nobby Wrote: [ -> ]ACP > Configuration > Reputation
[Image: TeJaM.png]

Check off negative rep.

He only said the registered user group, not for the whole board.

Oh...then yes it would require a plugin.
Anyone know what plugin I would need to have it like this?
i need this too! i hope to find the plugin
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