I just downloaded it and took a look. The file you need to modify is template_index.php. You modify it simply by doing the following (here is an example).
This is what they give you:
PHP Code:
$TEMPLATE["PATH"]["FOOTER"] = <<<EOF
EOF;
Heres what you can do:
PHP Code:
$TEMPLATE["PATH"]["FOOTER"] = <<<EOF
<a href=#>link 1</a> - <a href=#>link 2</a> - <a href=#>link 3</a>
EOF;
So, basically what I am saying is you can edit whats between the "<<<EOF" and the "EOF;". Anything between those will appear in the template you modified.
I hope that makes sense, I'm 95% sure I'm right.
|