Version 3.4.1 [ hotfix ]

This update was released on July 20th, 2020.

Changelog

  1. Fixed the mobile display of product grids
  2. Fixed an issue with predictive search

How to manually apply the mobile display fix

  1. Go to the theme editor (read this article for more info)
  2. Choose  /assets/theme.scss.liquid  and search for this snippet (around line 4880):

    @include at-query($max, $palm) {
       -ms-grid-columns: 1fr;
       grid-template-columns: 1fr;
    }
    	

    Remove this code.

  3. Alternatively, if you can't find the snippet, you could also add this code at the very end of the file:

    @include at-query($max, $palm) {
       .collection--grid {
    	-ms-grid-columns: 1fr 1fr;
    	grid-template-columns: 1fr 1fr;
       }
    }
    	
  4. Save the file.
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.