vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Using custom templates in vBulletin 3 (https://vborg.vbsupport.ru/showthread.php?t=62921)

Toneboy 03-25-2004 11:35 AM

Using custom templates in vBulletin 3
 
I've looked everywhere, posted on www.vbulletintemplates.com, found numerous solutions which appear to be relevant for vBulletin 2, and was up until 3.30am last night looking through code to get the answer without success. So I thought it might be best to come back here and hopefully then the answers can be easily found by lots of vB users (and not just me!).

After yesterday's post about site navigation I looked around a bit, and decided that putting the site navigation in a template might be the best answer. (I will be testing phpinclude_start template as well at some point, to see which gives me more flexibility.)

So I created a new template (called "site_navbar") and put what I wanted to it in, then tried to call it within the header template. Of course it isn't that simple. :)

So basically, $navbar brought up the navbar template, whereas $site_navbar did not bring up the site_navbar template.

I've looked around at various things. Various eval lines in files like global.php, I think I saw a "use templates" line in various files (which, unfortunately, appeared to be for vB 2).

So what exactly do you need to do so that your custom templates can be called in the same manner as the standard templates?

Thanks in advance - I hope other vB newbies find the answer to be as helpful as I will.

Velocd 03-25-2004 04:28 PM

If you wish to create a new template assigned to the variable $site_navbar, and want it to be used inside the header template, you'll need to place the eval assignment ABOVE the $header.

So in global.php, you should have something like:

PHP Code:

eval('$site_navbar = "' fetch_template('site_navbar') . '";');
// Custom navbar

eval('$headinclude = "' fetch_template('headinclude') . '";');
eval(
'$header = "' fetch_template('header') . '";');
eval(
'$footer = "' fetch_template('footer') . '";'); 

Speaking of phpinclude, I'm not too keen on how enthused people are with it. I think all PHP should stick to the files, and not be muddled with the vBulletin template system (this doesn't include vB conditionals, which although uses PHP functions, the concept is a core component of many CMS systems out there and considered acceptable).


All times are GMT. The time now is 01:25 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01046 seconds
  • Memory Usage 1,717KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete