I first want to state I have read through this whole thread and tried to fix my issues but couldn't...
First issue I have is I'm trying to call up a template within a template. I've tried numerous codes but with no results. I have created pages based off the code presented here which I have working great pulling up single templates.
PHP Code:
// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
$templater = vB_Template::create('ccl_infoandtips');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
print_output($templater->render());
?>
What I am trying to do now is call up another template named "ccl_navigation" within the first template shown above "ccl_infoandtips". I've tried numerous things here in the php and also in the original template but still couldn't get the second template to render at all.
--------------------------------------
Second issue I'm having is with custom pages that are residing outside of the forum subdirectory. Everything with relative links is showing multiple errors in cpanel for every page. They include /clientscript, /images/misc, images/buttons, etc. I do see how they are referenced by a relative link but I have this:
PHP Code:
<base href="{vb:raw basepath}" /><!--[if IE]></base><![endif]-->
in the headinclude template and thought that should of stopped the issue from occurring in the first place, but as you can see it hasn't. I don't actually see any visual problems with these pages, just the hundreds of errors recorded every hour.
Thanks for any help.