There are 2 ways of doing it.
Code:
Files to Edit: 1
Templates To Add: 1
In *** root/global.php *** find:
----------------------------------------------------------------------
$footer='';
----------------------------------------------------------------------
+
+++
+
Right under it add:
----------------------------------------------------------------------
///// ttlast include start /////////
eval("\$ttlast = \"".gettemplate('ttlast')."\";");
///// ttlast include end/////////
----------------------------------------------------------------------
Save then upload.
Then..
Add a New Template called ttlast.
Put the contents of ttlast.php in it. Then to include the template, just use $ttlast in your header section.
The second way of doing this is without a template.
Code:
In *** root/global.php *** find:
----------------------------------------------------------------------
$footer='';
----------------------------------------------------------------------
+
+++
+
Right under it add:
----------------------------------------------------------------------
///// ttlast include start /////////
$ttlast = include("ttlast.php");
///// ttlast include end/////////
----------------------------------------------------------------------
Save then upload. ttlast.php must be located in your /root forum directory (or youc an change the include). Then to include the file, just use $ttlast in your header section.
I have tested both of these methods and they should work flawlessly.