Hi X Team,
Since a while when I want to return to my dashboard Pro won’t let me. Every time it leads me to a block editor page?
What going on?
Hi X Team,
Since a while when I want to return to my dashboard Pro won’t let me. Every time it leads me to a block editor page?
What going on?
I can’t edit my Home page anymore. When I click edit with Pro I get a warning in the right upper corner about html closing tag or something. This happend after clicking exit to dashboard.
On the page I see only echo""; the rest is blanco, not editor or what so ever??
Please help
Hi @smart_x,
Unfortunately, credentials is not working. Please double check.
If in case you update to WP 5.4 which is a major update, is not yet officially compatible with our theme see https://theme.co/docs/version-compatibility
There is a Gutenberg issue. However you can temporarily fix the issue by adding the following code in the child theme’s functions.php file (see https://theme.co/docs/child-themes):
/* 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.
If in case that is not the exact issue you where having, please double check credentials above. Thank you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.