Quote:
Originally Posted by thecoo1est
Hi Lynne, Would you answer one question for me? Im not sure I fully understand how to call additional templates in to existance.
I have the "custom home" template setup with your settings looks great of course. I then added another template, its a slideshow slider. How do I call the "slideshow" template into the" custom home" template above the vb:raw footer?
What exaclty would I need to do to the php file?
I know the slider works because if I add it to the custom home template I can see it, but I would rather have it in its own template for easy editing when I apply new pictures and links.
|
You need to first render the "slideshow" template and then add the results of it as a variable into the "custom home" template.
$newTemplate = vB_Template::create('slideshow');
$newTemplate->register('variable1', $somearray);
$newTemplate->register('variable2', $variabletwo);
$slideshow = $newTemplate->render();
then register slideshow for use in the "custom home" template.
Quote:
Originally Posted by Anatoliy2
Thanks for the answer! That's what I did originally and it doesn't work.  I created file links.php (put it in the root), created a new template TEST, made a new nav tab Links, put links.php in the Tab Script(s) field. Doesn't work. The "Forum" link is highlighted when I'm on links.php page.  Please help to understand what I'm doing wrong.
|
Tab Script is probably just "links" - check to see what variable you defined as THIS_SCRIPT at the top of the page.