Closed (fixed)
Project:
AD Novus
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
22 Jan 2009 at 00:24 UTC
Updated:
21 Jul 2009 at 20:50 UTC
I was wondering, that no blocks in the footer are displayed. So I look into the page.tpl.php. It seems that the Footer is not printed here:
This is the original footer div:
<div id="footer">
<?php print $footer_message;?><br/>
<a href="http://www.rockettheme.com/Templates/Free_Templates/Novus_-_Free_Joomla_Template/">Theme</a> <a href="http://www.avioso.com">port</a> sponsored by Duplika <a href="http://www.duplika.com">Web Hosting</a>.
<?php print $closure ?>
</div>
Insert the "print" command in the second line:
<div id="footer">
<?php print $footer; ?>
<?php print $footer_message;?><br/>
<a href="http://www.rockettheme.com/Templates/Free_Templates/Novus_-_Free_Joomla_Template/">Theme</a> <a href="http://www.avioso.com">port</a> sponsored by Duplika <a href="http://www.duplika.com">Web Hosting</a>.
<?php print $closure ?>
</div>
Ciao,
Mike
Comments
Comment #1
Alan Cooney commentedThanks