In global.php there's this code:
PHP Code:
// #############################################################################
// Generate Style Chooser Dropdown
if ($vbulletin->options['allowchangestyles'] AND empty($_POST['do']))
{
$stylecount = 0;
$quickchooserbits = construct_style_options(-1, '--', true, true);
$show['quickchooser'] = ($stylecount > 1 ? true : false);
unset($stylecount);
}
else
{
$show['quickchooser'] = false;
}
So you could temporarily change that first line like this:
PHP Code:
// if ($vbulletin->options['allowchangestyles'] AND empty($_POST['do']))
if (true)
and see if anything shows up (that line starting with 'if' shold really be all on one line but the CODE tag seems to be wrapping it).
Then if that doesn't change anything try this:
PHP Code:
// $show['quickchooser'] = ($stylecount > 1 ? true : false);
$show['quickchooser'] = true;
anyway, you probably get the idea.