sacpony
09-06-2011, 08:04 PM
Is there a way to limit who can use a chat plug-in? For example, if I wanted to have a basic site for non-pay members and sort of an upgraded site for donating members.
It depends on the chat plugin. I've seen at least one with that option built in. But even if it's not, you could probably edit the plugin(s) and surround the code with
if (is_member_of($vbulletin->userinfo, 5, 6, 7))
{
// chat code here
}
where you'd change 5, 6, 7 to the list of usergroups you want to have access.
Another way might be if the mod already has an option to enable/disable it from the adminCP, you could create a plugin using hook location global_bootstrap_init_start and code like:
if (!is_member_of($vbulletin->userinfo, 5, 6, 7))
$vbulletin->options[option_name] = 0;
where option_name is the actual name of the option (You can probably figure this out by looking at the existing plugin).
Anyway, I hope this helps.
sacpony
09-06-2011, 09:33 PM
Thanks for the reply...I will try it out and let you know!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.