Unable to edit a page

Permalink
Hi whenever i put a page in editmode it will show me the blocks with the dotted lines just fine. But all blocks are not active so i am unable to click on them to edit them. Also the top bar is not loading correctly so i cant leave the edit mode. I have enclosed a screenshot.

1 Attachment

 
mnakalay replied on at Permalink Reply
mnakalay
More often than not this is due to a javascript error somewhere. Sometimes it's the loading of 2 distinct jquery instances.

Do you have access to a debugger to check error messages on your page?
Do you have a live address that we could check?
plagil replied on at Permalink Reply
Thx for your reply. the url ishttp://www.managementundgolf.de
Thx again.
mnakalay replied on at Permalink Best Answer Reply
mnakalay
As I suspected you have an error in your code.

In the head part you have several javascript variables set. It looks like this:
<script type="text/javascript">var BOOTSTRAP_VERSION ="bootstrap"; var BOOTSTRAP_JS_HEAD =1; var BOOTSTRAP_JS_FOOTER =0; var BOOTSTRAP_LESS_MODE =0; var BOOTSTRAP_CDN_ENABLE =0; var BOOTSTRAP_NAVBAR_TYPE =1; var BOOTSTRAP_LOGO_OPTION =1; var BOOTSTRAP_NAVBAR =1; var BOOTSTRAP_EDT= 0;

The problem is the "script" tag is not closed. at the end of the line you need to add </script> so you have:
<script type="text/javascript">var BOOTSTRAP_VERSION ="bootstrap"; var BOOTSTRAP_JS_HEAD =1; var BOOTSTRAP_JS_FOOTER =0; var BOOTSTRAP_LESS_MODE =0; var BOOTSTRAP_CDN_ENABLE =0; var BOOTSTRAP_NAVBAR_TYPE =1; var BOOTSTRAP_LOGO_OPTION =1; var BOOTSTRAP_NAVBAR =1; var BOOTSTRAP_EDT= 0;</script>
plagil replied on at Permalink Reply
You are a livesaver.

Thx a million
Planet4 replied on at Permalink Reply
This looks very helpful. What file is this code on?