Log in

View Full Version : Guest only skin


dotacentraldev
05-22-2009, 03:22 AM
I'm new to vB, I recently moved over from IPB. Now in the IPB ACP you could force specific user groups to use a specific skin, I would like to force guests to use the default vB skin at the moment, how would I go about doing this?

Lynne
05-22-2009, 03:33 AM
Add a plugin using the style_fetch hook location with the following:

if (is_member_of($vbulletin->userinfo, x))
{
$styleid = y;
}

Change x to the usergroupid and y to the styleid.

From the manual - Plugin System (http://www.vbulletin.com/docs/html/plugin_system)

dotacentraldev
05-22-2009, 03:46 AM
Add a plugin using the style_fetch hook location with the following:

if (is_member_of($vbulletin->userinfo, x))
{
$styleid = y;
}

Change x to the usergroupid and y to the styleid.

From the manual - Plugin System (http://www.vbulletin.com/docs/html/plugin_system)

Thanks much!