Gamelobby |
01-13-2012 08:54 AM |
Quote:
Originally Posted by Logician
(Post 2286438)
Not really but forcing a webtemplate to use a specific style can be possible by using a code like this in webtemplate's phpinclude section:
PHP Code:
$styleid = 8;
$vbulletin->userinfo['styleid'] = $styleid;
$userselect = true;
$style = $db->query_first_slave("
SELECT *
FROM " . TABLE_PREFIX . "style
WHERE styleid = '$styleid'
LIMIT 1
");
$templater = vB_Template::create('headinclude');
$templater->register('foruminfo', $foruminfo);
$templater->register('pagenumber', $pagenumber);
$templater->register('style', $style);
$templater->register('basepath', $vbulletin->input->fetch_basepath());
$headinclude = $templater->render();
$templater = vB_Template::create('header');
$templater->register('ad_location', $ad_location);
$templater->register('pmbox', $pmbox);
$templater->register('notifications_menubits', $notifications_menubits);
$templater->register('notifications_total', $notifications_total);
$templater->register('notices', $notices);
$templater->register('facebook_header', $facebook_header);
$header = $templater->render();
$templater = vB_Template::create('footer');
$templater->register('admincpdir', $admincpdir);
$templater->register('ad_location', $ad_location);
$templater->register('cronimage', $cronimage);
$templater->register('languagechooserbits', $languagechooserbits);
$templater->register('modcpdir', $modcpdir);
$templater->register('quickchooserbits', $quickchooserbits);
$templater->register('template_hook', $template_hook);
$templater->register('facebook_footer', $facebook_footer);
$footer = $templater->render();
I didn't test it, it might require tweaks.
|
Quote:
Originally Posted by Gamelobby
(Post 2286643)
I'm not the best with "tweaks" lol
But i can add a style id. :)
Where would this code go..?
|
Quote:
Originally Posted by Logician
(Post 2286668)
PHP Include section of the webtemplate that you want to apply the custom theme.
|
Soooo, It kind of worked.. what tweaks might you suggest..?
Most of it looks good except:
Logo & search button color (both are default skin)
I'm guessing since these are both part of the header, that is what i should be looking for, or to add/change.?
Thanks
|