I was seeing this problem also. I just commented out the lines in plugin.php and my site started working again. Not perfect, but got the site up again.
/** TODO: BC for Elementor v2.6.0 */
// if ( $elementor->editor->notice_bar ) {
// $elementor->editor->notice_bar = new Notice_Bar();
// }
Edit:
Better solution from the github thread is to add an isset() to the if statement.
/** TODO: BC for Elementor v2.6.0 */
if ( isset( $elementor->editor->notice_bar ) ) {
$elementor->editor->notice_bar = new Notice_Bar();
}
-
This reply was modified 5 years, 8 months ago by dstapler.