Version 3.4.1 [ hotfix ]
This update was released on July 20th, 2020.
Changelog
- Fixed the mobile display of product grids
- Fixed an issue with predictive search
How to manually apply the mobile display fix
- Go to the theme editor (read this article for more info)
-
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.
-
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; } }
- Save the file.