PDA

View Full Version : random style each visit


DJDarknez
05-10-2006, 08:00 PM
I'm looking for a hack / mod / plugin that would allow a random style to be displayed each time a user visits the page. I have several logos that I want to use, but i want the rest of the forum (including mkportal, which pulls the color from the forum) to match the primary color of the logo.

I saw the random logo thing, but I want the entire style to be random.

Hope that makes sense.

MimeSong Erk
05-13-2006, 03:39 PM
I'm kinda looking for this too. It should be easy to do, based on the random logo thing. I'll see if I can figure it out myself, and reply back here if I do.

ArchangelX
04-01-2007, 06:26 PM
Anyone know of anything like this? I'd be interested in it, too!

ArchangelX
08-22-2007, 10:16 PM
Nothin' huh?

MeNeedHelp
08-23-2007, 03:53 AM
You could insert this in the global.php file.
($hook = vBulletinHook::fetch_hook('style_fetch')) ? eval($hook) : false;

$numstyles = 3; // however many styles you have
$randstyle = rand(0, $numstyles * 1000);

if ($randstyle < 1000)
{
$vbulletin->userinfo['styleid'] = 1;
$styleid = 1;
}
else if ($randstyle < 2000)
{
$vbulletin->userinfo['styleid'] = 2;
$styleid = 2;
}
else if ($randstyle < 3000)
{
$vbulletin->userinfo['styleid'] = 3;
$styleid = 3;
}

ArchangelX
08-23-2007, 05:43 AM
Oooh..great! Thanks for the help. I have 3.5 but I'll try this out pronto!