if you need the navbar to be disabled only, this is simple... no need to edit the template. in any script you want it to be managed with a conditional, just do like:
PHP Code:
if ($myconditional)
{
eval('$navbar = "' . fetch_template('navbar') . '";');
}
you just have to find all the eval containing the navbar.. this is where it is defined...
same thing for all the templates in the scripts...