Quote:
Originally Posted by Bad Bunny
Sorry to be posting so much...but I am not very good at php, but this seems to be what you would need to do to use your own custom templates.
find
Code:
eval('$navbar = "' . fetch_template('navbar') . '";');
Right after it include
Code:
eval('$XXXXXX = "' . fetch_template('XXXXXX') . '";');
Change the XXXXXX to the name of template you are going to be adding.
Then find
Code:
$globaltemplates = array(
'simplepage',
Right after that add where XXXXXX is yet again the name of the template you will be including.
So...this works for me, but what I wanna know is...is there a better way to do this? or is this pretty much it?
|
Ill add somthing to make it easyer in the next build.