Problem with updating, again!

Hello,

First of all, after the update to the latest version, edit with cornerstone button is not working.

I can only edit with cornerstone through the button in the page that lists all pages.

Screenshot_5

In addition, i still have the same problem with my latest topic - which we didn’t find any solution.

https://theme.co/forum/t/after-update-cornerstone-cannot-render-code/70983/16

At first, after our discussion, i thought that it was something i did like using a tool to update all urls from http to https. So, i thought, that might be the problem with the change of content outside cornerstone.

But now, after this update i am sure it has something to do with the theme.

I have lost content of my pages yet again without making any changes outside Cornerstone or even editing at all.

Please, don’t tell me again something similar that i edited the pages outside Cornerstone. I did not!

For example you can check all pages under “We Offer” on the main menu.

Looking forward to your reply and a solution on this extremely serious issue.

The login data for the site is in the above post and please check that discussion as well.

Thank you in advance,
Kostas

Hi Kostas,

Thank you for reaching out to us. I tried to login to your site but the credentials in the thread you shared do not work anymore (see screenshot) please double check your credentials.

image

The issue you’re having now seems related to the update of WordPress version to 5.4.0. Please be advised the WordPress version 5.4.0 which is a major update, is not yet officially compatible with our theme see https://theme.co/docs/version-compatibility

However you can temporarily fix the issue by adding the following code in the child theme’s functions.php file:

/* Temporary fix for Gutenburg issue with WP 5.4 */
add_action('admin_head', 'fix_content_builder');

function fix_content_builder() {
  echo '<style>
    .cs-disable-gutenburg #editor .edit-post-visual-editor.editor-styles-wrapper {
      display: none!important;
    }
  </style>';
}

This will be fixed in the next release of the theme and then you can safely remove the above code. Let us know how this goes!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.