MyBB Community Forums

Full Version: make a certain usergroup only +1 and neutral?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i make it so only a certain usergroup can +1 and neutral, no -rep at all
There's a simple tweak for this;

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

and Change it to;
$group = "1,2,5";
$groups = explode(",",$group);
if($mybb->settings['negrep'] || !in_array($mybb->user['usergroup'],$groups))

You may Change 1,2,5 to the Usergroup IDs you wish to disallow 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.
ok , but im sorry for a noobie question, but where can I find the ID of the group?
AdminCP > Users and Groups > Groups > and hover your mouse cursor over the Usergroup's names and see the gid in status bar.
(2012-12-02, 05:03 PM)Yaldaram Wrote: [ -> ]AdminCP > Users and Groups > Groups > and hover your mouse cursor over the Usergroup's names and see the gid in status bar.

i did that, but people can still neg rep

i put the code in the ./reputation.php

but they can still -rep