After restoring a backup, an error message appears via Oceanwp
-
Hello,
I am doing a restore of my live website on Localwp. Then I edit a page with Elementor and want to go back to the backend, suddenly this error message keeps popping up.
This is Line 97 :
// Input title style.
if ( ‘h1’ === $heading_tag && ! empty( $heading_h1 ) && empty( $headings ) && empty( $post_title ) ) {
$gutenberg_css .= ‘.editor-post-title__block .editor-post-title__input, .editor-post-title.editor-post-title__input{color:’ . $heading_h1 . ‘;}’;
} elseif ( ‘h2’ === $heading_tag && ! empty( $heading_h2 ) && empty( $headings ) && empty( $post_title ) ) {
$gutenberg_css .= ‘.editor-post-title__block .editor-post-title__input{color:’ . $heading_h2 . ‘;}’;
} elseif ( ‘h3’ === $heading_tag && ! empty( $heading_h3 ) && empty( $headings ) && empty( $post_title ) ) {
$gutenberg_css .= ‘.editor-post-title__block .editor-post-title__input{color:’ . $heading_h3 . ‘;}’;
} elseif ( ‘h4’ === $heading_tag && ! empty( $heading_h4 ) && empty( $headings ) && empty( $post_title ) ) {
$gutenberg_css .= ‘.editor-post-title__block .editor-post-title__input{color:’ . $heading_h4 . ‘;}’;
} elseif ( ! empty( $headings ) && empty( $post_title ) ) {
$gutenberg_css .= ‘.editor-post-title__block .editor-post-title__input{color:’ . $headings . ‘;}’;
} else {
$gutenberg_css .= ‘.editor-post-title__block .editor-post-title__input{color:’ . $post_title . ‘;}’; <– Line 97
}What kind of mistake is this?
Greetings
Andi
- You must be logged in to reply to this topic.