Viewing 1 replies (of 1 total)
  • Hi nemtulea,

    You may try using jQuery in no-conflict mode in your JS file, it should fix the problem.

    In your javascript change: “$” with “jQuery” ..everywhere..

    For example, if you are using flex-slider you have to change:

    $(window).load(function() {
    $(‘.flexslider’).flexslider({
    animation: “slide”
    });
    });

    to

    jQuery(window).load(function() {
    jQuery(‘.flexslider’).flexslider({
    animation: “slide”
    });
    });

    Let me know if this helps.

    Antonio

Viewing 1 replies (of 1 total)

The topic ‘Slider problem (breaks the theme with this plugin)’ is closed to new replies.