Hi there,

I am having strange issues with Litejazz. Even if I drop a "footer" block in the blocks section, it won't show. I tried several different different types of content (formatted html, plaintext, pictures etc.) - footer just won't show up aboove the "Roopletheme" pic.

Any ideas what that could be?

Thanks,
Robert

CommentFileSizeAuthor
#2 changes.txt266 bytestkazungu
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

tkazungu’s picture

Have the same problem, anyone managed to sort this problem

regards,
Tony

tkazungu’s picture

FileSize
266 bytes

Managed to sort out the problem, $footer variable is missing in the page.tpl.php file

1. go to sites\all\themes\litejazz
2. open page.tpl.php file
3. on the footer section line 217,218: ADD the footer variable
4. go to your blocks and add something to the footer to view

hope it helps

manmohandream’s picture

yes above steps will solve the issue.
also check in info file in theme folder.footer region must be declared there.

mrtoner’s picture

I believe a better solution is to change this line:

<div id="footer"> <?php if ($footer_region) { ?><div id="footer-region"><?php print $footer_region?></div><?php } ?>

to this:

<div id="footer"> <?php if ($footer) { ?><div id="footer-region"><?php print $footer ?></div><?php } ?>

It appears that the original author simply mislabeled the regions.

Kisugi Ai’s picture

Status: Active » Fixed

fixed in dev 10/22/11

Kisugi Ai’s picture

Status: Fixed » Closed (fixed)