1

I'm using flexslider.js, but im getting the error when removing the variant for images. Here's the code below of product.liquid of shopify. how to resolve this issue in flexslider?

    <script src="//cdn.shopify.com/s/files/1/2149/4693/t/7/assets/jquery-1.11.2.min.js?18364480765274061922" type="text/javascript"></script>
{{ '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js' | script_tag }}
{{ 'jquery.flexslider.js' | asset_url | script_tag }}
{{ 'jquery.flexslider-min.js' | asset_url | script_tag }}
<script>
       $(window).load(function() {
        $('#carousel').flexslider({
          animation: "slide",
          controlNav: false,
          animationLoop: false,
          slideshow: false,
          itemWidth: 130,
          itemMargin: 5,
          item:3,
          asNavFor: '#slider'
        });

        $('#slider').flexslider({
          animation: "slide",
          controlNav: false,
          animationLoop: false,
          slideshow: false,
          sync: "#carousel"
        });
      });
</script>

enter image description here

Newbie_prog
  • 23
  • 1
  • 7

1 Answers1

0

It looks like you have added jQuery library twice.

<script src="//cdn.shopify.com/s/files/1/2149/4693/t/7/assets/jquery-1.11.2.min.js?18364480765274061922" type="text/javascript"></script> {{ '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js' | script_tag }}

If you load jQuery more than once in a page it may create conflict and your script may not work. jquery-1.11.2.min.js and jquery.min.js is same thing just different version.

Also the shopify theme may have already included jquery. If it has , you donot need to add it anymore.

On the next line i can see you tried to load flexslider plugin twice.

{{ 'jquery.flexslider.js' | asset_url | script_tag }} {{ 'jquery.flexslider-min.js' | asset_url | script_tag }}

both are same thing , the second one is just minified version of the library. So get rid of one of them.

Then try and let me know if your problem is solved or not. Regards

Dezefy
  • 2,048
  • 1
  • 14
  • 23