PDA

View Full Version : Postbit Per Theme??


Spectre_Aidan
04-23-2012, 10:29 AM
Hey there

i was just wondering if its possible to have a different postbit per theme so for instance on theme 1 i would have posbit_legacy and on another theme i would have the other postbit (that goes along the top) :/ and how would i be able to display 2 userbadges for the postbit along the top

kh99
04-23-2012, 11:17 AM
There's no option to do that. You might be able to use different postbit templates in different styles (i.e. copy postbit to postbit_legacy in one of the styles), or you could use a plugin. For example a plugin using hook global_setup_complete and this code:

if (STYLEID == 3)
{
$vbulletin->options['legacypostbit'] = 0;
}


uses postbit in style 3 and postbit_legacy in the others (because I have "Use Legacy Postbit" set to yes in the options).

Spectre_Aidan
04-24-2012, 11:44 AM
ok thanks for the info :D