Home Forums WoodMart support forum Fatal error: Uncaught Error: Call to undefined function woodmart_elementor_is_ed Reply To: Fatal error: Uncaught Error: Call to undefined function woodmart_elementor_is_ed

#219160

Artem Temos
Keymaster

Try to edit the file and change the following line /themes/woodmart/functions.php http://prntscr.com/tx74vd

if ( woodmart_is_elementor_installed() && ( woodmart_elementor_is_edit_mode() || woodmart_elementor_is_preview_page() || woodmart_elementor_is_preview_mode() ) ) {

to this one

if ( woodmart_is_elementor_installed() && function_exists( 'woodmart_elementor_is_edit_mode' ) && ( woodmart_elementor_is_edit_mode() || woodmart_elementor_is_preview_page() || woodmart_elementor_is_preview_mode() ) ) {