Version 2.0.3

This update was released on the 17th of June and it contains a fix for an issue related to the collection / product custom galleries.

If you are not using custom galleries, but you're using images inside your product pages and these appear really small to you, you can skip this update and just apply the tiny images fix

How to manually update

  1. Go to the theme editor (read this article for more info)
  2. Choose /assets/js_plugins.min.js and right and the end of the file add the following code snippet:

    window.imagesLoadedLIGHT = function( $container, callback ){
      var imageSet = $container.find('img'),
          loaded = 0,
          interval;
      imageSet.each(function(){
        if ( $(this)[0].naturalWidth > 0 ) {
          loaded++;
        } else {
          $(this).load(function(){
            loaded++;
          });
        }
      });
      interval = setInterval(function(){
        if ( imageSet.length == loaded ) {
          clearInterval(interval);
          callback();
        }
      }, 60);
    };
    	
  3. Choose /assets/js_main.js file and completely replace all of it's contents with the contents of the following file: https://pastebin.com/raw/VS6PaC9i
  4. Choose /sections/collection.liquid file and completely replace all of it's contents with the contents of the following file: https://pastebin.com/raw/vfh0uXP5
  5. Choose /sections/product.liquid file and completely replace all of it's contents with the contents of the following file: https://pastebin.com/raw/jmcF9DuD
  6. Choose /sections/product_pre-order.liquid file and completely replace all of it's contents with the contents of the following file: https://pastebin.com/raw/UVENPF5q
  7. Save all files!

Tiny images fix

  1. Go to the theme editor (read this article for more info)
  2. Choose /sections/product.liquidand right and look for the following code line:

    {{ product_description }}
    	

    Replace it with the following:

    {% if section.settings.enable_product_gallery %} {{ product_description }} {% else %}  {{ product.description }} {% endif %}
    	
  3. Save the file and you're done. If you're using the pre order template, do the same for /sections/product_pre-order.liquid
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.