Conversation
supportHi, When editing using Elementor editor, I get pop-up fired every time I save the content. It is very annoying. How do I suppress this behavior?
Any suggestions about it?
No ideas? no hint how to solve this problem?
Please try adding this snippet. add_action( 'wp_head', function(){ if( !class_exists('Xoo_CP_Public') ) return; $cp = Xoo_CP_Public::get_instance(); $elementor_preview_active = \Elementor\Plugin::$instance->preview->is_preview_mode(); if( $elementor_preview_active ){ remove_action('wp_footer',array($cp,'get_popup_markup')); } } );
Thank you! It works!
Any suggestions about it?
No ideas? no hint how to solve this problem?
Please try adding this snippet. add_action( 'wp_head', function(){ if( !class_exists('Xoo_CP_Public') ) return; $cp = Xoo_CP_Public::get_instance(); $elementor_preview_active = \Elementor\Plugin::$instance->preview->is_preview_mode(); if( $elementor_preview_active ){ remove_action('wp_footer',array($cp,'get_popup_markup')); } } );
Thank you! It works!