Version 3.0.1

This update was released on the 18th of November.

Changelog

  1. Fixed an issue with numeric product variants 
  2. Fixed a visual issue with the slider on mobile devices
  3. Fixed other small visual issues

How to manually apply the variants fix

  1. Go to the theme editor (read this article for more info)
  2. Choose sections/product.liquid and find this line:

    if ( $.inArray($(this).data('value'), availableOptions) < 0 ) {

    Replace it with:

    if ( $.inArray($(this).data('value').toString(), availableOptions) < 0 ) {
  3. Save the file!

How to manually apply the slider fix

  1. Go to the theme editor (read this article for more info)
  2. Choose /assets/theme.min.js and completely replace the file with the contents of the following file: https://pastebin.com/raw/2hhSmmi7

  3. Save the file!
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.