Quote:
Originally Posted by Edrick
I tried to intall this, I created the navbar2 template, modified the global.php file, and the templates, but it's not working. Exactly how should i include the:
eval('$navbar2 = "' . fetch_template('navbar2') . '";');
into the phpinclude_start template?
|
Did you put the "$navbar2" code in you navbar?
Here is the stock phpinclude_start file the way it comes:
Code:
// Example of how to include a seperate file:
// ob_start();
// require("yourheader.html");
// $header = ob_get_contents();
// ob_end_clean();
Here is a sample of how to add the code for the navbar2:
Code:
// Example of how to include a seperate file:
// ob_start();
// require("yourheader.html");
// $header = ob_get_contents();
// ob_end_clean();
eval('$navbar2 = "' . fetch_template('navbar2') . '";');