Version 3.0.1
This update was released on the 18th of November.
Changelog
- Fixed an issue with numeric product variants
- Fixed a visual issue with the slider on mobile devices
- Fixed other small visual issues
How to manually apply the variants fix
- Go to the theme editor (read this article for more info)
-
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 ) {
- Save the file!
How to manually apply the slider fix
- Go to the theme editor (read this article for more info)
-
Choose /assets/theme.min.js and completely replace the file with the contents of the following file: https://pastebin.com/raw/2hhSmmi7
- Save the file!