MyBB Community Forums

Full Version: limit reputations
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, how can I limit a reputation for some users ?
i.e, I want only users with >100 posts can use a reputations feature. thanks Wink
reputation.php

find this code on line 49:
if($mybb->input['action'] == "add" || $mybb->input['action'] == "do_add")
{

Just below it add:
 if($mybb->user['postnum'] <= 100)
    {
        $message = $lang->add_no_permission;
        eval("\$error = \"".$templates->get("reputation_add_error")."\";");
        output_page($error);
        exit;
    }