MyBB Community Forums

Full Version: Multilogin plugin, make it just for admins?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I'm referring to this plugin -

http://mods.mybb.com/view/multilogin

When installed it's available for everyone including Members. How can I make it for just Admins or specific groups.
Moved to Plugin Support.
You would need to change the line

if($mybb->user['uid'] != "0")

to

Single group
if($mybb->user['usergroup'] == "ADMIN / MOD GROUP ID")

Multiple groups
if($mybb->user['usergroup'] == "Group 1" || $mybb->user['usergroup'] == "Group 2")

Enter the group ID of the group you want to be able to do it.