Quote:
Originally Posted by tomp
hey, ok heres how i did it
i created a template in my admin cp called links for example
then i made a new php file called links.php which had the following code in it:
<?php
error_reporting(E_ALL & ~E_NOTICE);
require_once('./global.php');
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('links (or whatever your template is called)') . '");');
?>
i uploaded that into my forum directory and then created a link in my navigation bar to link.php
Hope this was some help 
|
I'm just now getting around to doing this. It's not working exactly yet. Here's what I put in a new file called consultants.php and uploaded to the forum directory...
Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
require_once('./global.php');
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('consultants') . '");');
?>
I created a new template called consultants and is called fine from above, however, the navbar isn't working. Because it's in a sub directory under "Navigation / Breadcrumb Templates"? How about the $navbar piece, I don't understand that part.
Thanks,
rob