Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    thanks for segnalation.

    To fix this issue you should add the following code into functions.php of your theme:

    add_action( 'admin_enqueue_scripts', 'yith_plugins_master_slider_fix', 999 );
    
    function yith_plugins_master_slider_fix() {
        $screen = get_current_screen();
        if ( strpos( $screen->id, '_masterslider' ) > -1 ) {
            wp_dequeue_script( 'yit-spinner' );
        }
    }

    Best Regards
    YIThemes

    Thread Starter moun18

    (@moun18)

    Hello,

    This code works perfectly ??

    Thank you very much.

    Plugin Author YITHEMES

    (@yithemes)

    You are welcome!

    If you like the plugin and our support, please, support us with a 5-star review. It takes just a minute. Thank you!

    Best Regards
    YIThemes

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Incompatilibty between your plugin and Master Slider’ is closed to new replies.