Closed (fixed)
Project:
litejazz
Version:
6.x-1.7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Oct 2009 at 00:20 UTC
Updated:
22 Oct 2011 at 21:31 UTC
Jump to comment: Most recent file
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
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | changes.txt | 266 bytes | tkazungu |
Comments
Comment #1
tkazungu commentedHave the same problem, anyone managed to sort this problem
regards,
Tony
Comment #2
tkazungu commentedManaged 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
Comment #3
manmohandream commentedyes above steps will solve the issue.
also check in info file in theme folder.footer region must be declared there.
Comment #4
mrtoner commentedI 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.
Comment #5
kisugiai commentedfixed in dev 10/22/11
Comment #6
kisugiai commented