Content Block Not Working! - Version 8 - Need Help
Permalink
Hello, I am using Concrete5 version 8 Fundamental Theme. When I click add block, then click on content block nothing happens, the entire page just shades out. all the other blocks are working.
also... I don't see any error messages appear in Browser Console when I click on any of the other basic blocks in edit mode. But when I click on the Content Block the following shows up in Browser Console...
22:31:15.749 TypeError: ckeditor is undefined 1 jquery.min.js%20line%202%20%3E%20eval:10:13
also... I don't see any error messages appear in Browser Console when I click on any of the other basic blocks in edit mode. But when I click on the Content Block the following shows up in Browser Console...
22:31:15.749 TypeError: ckeditor is undefined 1 jquery.min.js%20line%202%20%3E%20eval:10:13
What is the site url?
Sounds same as
https://www.concrete5.org/community/forums/usage/content-block-not-w...
(No resolution there yet, but it could be helpful if you'd check out the suggestions there.)
https://www.concrete5.org/community/forums/usage/content-block-not-w...
(No resolution there yet, but it could be helpful if you'd check out the suggestions there.)
Hi SteveFazziniMusic,
Please do not create duplication discussions.
Please do not create duplication discussions.
ok sorry about that
You are calling jquery twice and this is almost certainly your problem.
First call is here at line 94 (jQuery v1.11.3)
And an older Version here at line 202
Try removing the one at line 202
First call is here at line 94 (jQuery v1.11.3)
<script type="text/javascript" src="/concrete/js/jquery.js"></script>
And an older Version here at line 202
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
Try removing the one at line 202
hi weyboat,
where is this code located? I'm new at all of this
Thanks!
where is this code located? I'm new at all of this
Thanks!
Looks like it is part of the Subscribe block at the top of the page
I am right clicking on that block then clicking inspect element....
don't see line you are referring to. How are you locating line 202 you are saying to remove?
thanks!
don't see line you are referring to. How are you locating line 202 you are saying to remove?
thanks!
View the source code of your website when not logged in i.e. right click the web page and left click view page source code.
ok, found the line 202... what is procedure for removing it?
thanks!
thanks!
You appear to have a block called robly_embed_signup, This block has the jquery included in it that is causing your problem.
jquery is included in concrete already and by calling it twice has caused the error message.
Since jquery is already called at line 94, you don't need the call at line 202.
Can you isolate the code in the robly_embed_signup block and remove it?
It is difficult to advice further without access to the file system...
jquery is included in concrete already and by calling it twice has caused the error message.
Since jquery is already called at line 94, you don't need the call at line 202.
Can you isolate the code in the robly_embed_signup block and remove it?
It is difficult to advice further without access to the file system...
yes that did it! content block is working now - Thank You so much!
Your Welcome!