Are you wanting to kill the whole footer (will make HTML invalid) or just the footer insert you have (like your ads)?
If so - here's how.
In the ubbt_footer.tmpl file.
Find this:
include("{$config['path']}/includes/$file");
Change to this:
if (!$config['nofooter']) {
include("{$config['path']}/includes/$file");
}
Then on any page you don't want the footer file included - ABOVE the send_footer function - add this:
$config['nofooter'] = 1;
Basically the "if" statment we did says if there's no value for $config['nofooter'] then we print the footer. So by defining a value, only on pages we don't want the footer inserted, we can "switch" it off.
