• Hi,

    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?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Tom

    (@atomiktd)

    Any suggestions about it?

    Thread Starter Tom

    (@atomiktd)

    No ideas? no hint how to solve this problem?

    Plugin Author xootix

    (@xootix)

    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'));
    		}
    	} );
    Thread Starter Tom

    (@atomiktd)

    Thank you! It works!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Annoying Elementor pop-up’ is closed to new replies.