text edit box not displaying controls
Permalink
I don't know what to do. I looked everywhere and none of the solutions helped me.
When I go to add a new block or edit a text box, I can add words but I can't save or do anything else.
I attached an example,
When I go to add a new block or edit a text box, I can add words but I can't save or do anything else.
I attached an example,
there are a few errors.
www.www.compositesystemsllc.com...
I'm not sure why I'm having these errors.
www.www.compositesystemsllc.com...
I'm not sure why I'm having these errors.
You appear to be calling the jquery library with this line of code
Concrete has the jquery library already included in the core files.
Try commenting out that line of code (probably in your theme header) like this
See if it helps..
<!-- jQuery library --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
Concrete has the jquery library already included in the core files.
Try commenting out that line of code (probably in your theme header) like this
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> -->
See if it helps..
The reason for the java error in the console is because the responsive header java-script references the .size() function and this has been removed from jquery from version 3 onwards.
The core jquery.js file is a modified version of jquery v1.11.3 and within the core file it allows for the .size call to be returned as .length.
Your header is referencing jquery v3.2.1, jquery v3.2.1 does not recognize the old .size() function, hence the error in the browser console.
The core jquery.js file is a modified version of jquery v1.11.3 and within the core file it allows for the .size call to be returned as .length.
Your header is referencing jquery v3.2.1, jquery v3.2.1 does not recognize the old .size() function, hence the error in the browser console.
I commented it out but instead I'm unable to click on the column tabs to edit my content. I did however changed 3.2.1 to 1.11.3 and it worked .
It looks like a problem with java.
What is your website url?