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

SteveFazziniMusic
 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
What is the site url?
SteveFazziniMusic replied on at Permalink Reply
SteveFazziniMusic
Greetings weyboat,

my site is http://www.stevefazzini.com
Gondwana replied on at Permalink Reply
Gondwana
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.)
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi SteveFazziniMusic,

Please do not create duplication discussions.
SteveFazziniMusic replied on at Permalink Reply
SteveFazziniMusic
ok sorry about that
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
You are calling jquery twice and this is almost certainly your problem.
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
SteveFazziniMusic replied on at Permalink Reply
SteveFazziniMusic
hi weyboat,

where is this code located? I'm new at all of this

Thanks!
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Looks like it is part of the Subscribe block at the top of the page
SteveFazziniMusic replied on at Permalink Reply
SteveFazziniMusic
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!
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
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.
SteveFazziniMusic replied on at Permalink Reply
SteveFazziniMusic
ok, found the line 202... what is procedure for removing it?

thanks!
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl
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...
SteveFazziniMusic replied on at Permalink Reply
SteveFazziniMusic
yes that did it! content block is working now - Thank You so much!
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Your Welcome!