The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#3
|
|||
|
|||
![]()
Just so you know you can create an override in global.php for it to kick in when the THIS_SCRIPT equals the page you want to use the special style on. I did a plugin for this on my site a while back to force certain pages to lock into certain styles.
Ill even point you in the right direction. Easiest for you to do would be create an if statement and if its true declare a new value for $styleid. Code:
$styleid = intval($styleid); ($hook = vBulletinHook::fetch_hook('style_fetch')) ? eval($hook) : false; Code:
$styleid = intval($styleid); if(THIS_SCRIPT=="somescript") { $styleid = REPLACETHISWITHYOURSTYLEID; } ($hook = vBulletinHook::fetch_hook('style_fetch')) ? eval($hook) : false; |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|