Version 2.7.3
This update was launched on the 3rd of March 2021. It fixes some small bugs:
- Blog post titles on mobile devices
- Newsletter redirection issue
- Product slider not sticky
- Product variant selectors on mobile Safari
Fixing blog post titles on mobile devices
- Go to the theme editor (read this article for more info)
-
Choose / assets/theme.css and right at the end of the file, paste the following snippet:
.mount-article .box__heading .site-box-content { position: relative; }
- Save file!
Fixing newsletter confirmation redirect
- Go to the theme editor (read this article for more info)
-
Choose /layout/theme.liquid and right at the end of the file, BEFORE the ending body tag:
Paste the following code:
<script> if ( window.location.search == '?customer_posted=true' ) { setTimeout(function(){ document.getElementById('contact_form').closest('.shopify-section').scrollIntoView(); }, 500); } </script>
- Save the file!
Fixing product slider & variants issues on mobile Safari
- Go to the theme editor (read this article for more info)
-
Choose /assets/theme.css and right at the end of the file, paste the following snippet:
.box__product-gallery.slider { position: sticky; top: 0; } .regular-select-cover select, .simple-select-cover select { -webkit-appearance: none !important; }
- Save file!