Posted by chaldar on October 2, 2008 at 6:45am
4 followers
| Project: | Blue Lake |
| Version: | 5.x-1.1 |
| Component: | Miscellaneous |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
Gmap refuses to display map with the message: "Javascript is required to view this map."
All active menu items lose their collapse/expand buttons.
Collapsible fieldsets become expanded and not collapsible.
It's a really nice looking theme, but looks like it disables Javascript. Or am I doing something wrong?
Comments
#1
I had simillar problem: Fckeditor didn't work with this theme. I found where is the problem: In html head section there is missing "print $scripts" so no javascripts are loaded. You have to add this php command to the html header in file page.tpl.php.
Old header:
<head><title><?php print $head_title ?></title>
<?php print $head ?>
<?php print $styles ?>
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
</head>
Fixed header:
<head><title><?php print $head_title ?></title>
<?php print $head ?>
<?php print $styles ?>
<?php print $scripts ?>
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
</head>
That's all.
btw: Many thanks for this very good theme from me too, keep working, please!
#2
#3
Thanks, krato. That does the job. Attached is a simple patch based upon your code in case anyone else needs to fix an already installed copy. It assumes that the theme is installed in sites/all/themes/.
#4
Issue has already been fixed in 1.1.
#5
Automatically closed -- issue fixed for 2 weeks with no activity.