I am probably beeing extra dumb today, but I think I followed the instructions carefully. My template is called static and my page is called 404.php. Uploaded it to the directory of the vbulletin installation and get the following when I try to open the page:
Code:
'404 Seite')); $navbar = render_navbar_template($navbits); // ###### YOUR CUSTOM CODE
GOES HERE ##### $pagetitle = '404 Fehlerseite'; // ###### NOW YOUR TEMPLATE IS BEING RENDERED
###### $templater = vB_Template::create('static'); $templater->register_page_templates();
$templater->register('navbar', $navbar); $templater->register('pagetitle', $pagetitle);
print_output($templater->render()); ?>
Any hints are greatly appreciated.