Log in

View Full Version : Different Skin For Guests?


azn_romeo_4u
02-29-2008, 04:59 AM
Is there a way to show a certain skin for guests, and something else for members?

calorie
02-29-2008, 07:35 AM
Untested, but try the following plugin (how to add a plugin (http://www.vbulletin.com/docs/html/main/add_plugin?manualversion=30506500)):

Product: whatever you want
Hook Location: style_fetch
Title: whatever you want
Execution Order: 5 is okay
Plugin PHP Code:

if (!$vbulletin->userinfo['userid'])
{
$styleid = 1; // set this to the style id
$vbulletin->options['styleid'] = $styleid;
}

Plugin is Active: Yes

Marco van Herwaarden
02-29-2008, 09:41 AM
You can set the Default Style in your vBulletin Options. This style will be used for all guests and members that ove not choosen a different style in their UserCP options.