• Resolved Emilien

    (@milouze)


    Hello,

    I have conflict with splide include in theme, maybe can you change your selector css with other of “splide.

    Thank you

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

    (@dkjensen)

    Hello

    Splide requires a specific structure, so that would not be possible at this time. However, if the included stylesheet is interferring with what your theme has set, you can dequeue the stylesheet from this plugin using the following:

    add_action( 'wp_enqueue_scripts', function() {
        wp_deregister_style( 'cloudcatch-splide-carousel-style' );
        wp_deregister_style( 'cloudcatch-splide-carousel-item-style' );
    
        wp_dequeue_style( 'cloudcatch-splide-carousel-style' );
        wp_dequeue_style( 'cloudcatch-splide-carousel-item-style' );
    } );

    Let me know if this helps.

    Thread Starter Emilien

    (@milouze)

    Thanks you for your quick answer, is perfect it’s a CSS conflict (and not the initiator).

    Thank you

    Plugin Author David Jensen

    (@dkjensen)

    Glad we could get that sorted!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Conflict with other splide’ is closed to new replies.