If I turn off the cornerstone plugin then the content of the page shows with cs shortcodes, but if the cornerstone plugin is active the page is blank. this is only for pages built in cornerstone. the content can be seen when editing in cornerstone.
I do have some code in functions which I was advised to add to stop the code showing in the wp editor:
// Additional Functions
// =============================================================================
/* Temporary fix for Gutenburg issue with WP 5.4 */
add_action(‘admin_head’, ‘fix_content_builder’);
function fix_content_builder() {
echo ’
.cs-disable-gutenburg #editor .edit-post-visual-editor.editor-styles-wrapper {
display: none!important;
}
';
}
I have removed the x theme and replace with the most recent version but this didn’t help.
I have now reverted the site to backup as I can’t leave the site like that.
Tamsin