MyBB Community Forums

Full Version: Exclude Users......
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to exclude users from plugins? It would be great if there was a simple code mod that could be done for any plug in to exclude user groups or just users specifically for the overview plug ins top poster option. I do not want staff, admins or bots to be shown.
You've to use the code like this;
$groups = array(3,4,6,8);
if (!in_array($mybb->user['usergroup'],$groups))
{
   // run the code here, this will not be run if the end user is among the usergroups 3,4,6,8
}
Thank You Sir!!

I attempted to do this, however I was unsuccessful. Do you know exactly where I need to enter this code for the overview top posters?
I don't know. You've to ask its author.