Version 1.0.1
Version 1.0.1 was released on the 11th of May 2021, and it features some very small fixes, including:
- Button arrow displacement issue on Safari browsers
- Mixed up sharing options (Facebook & Twitter)
These two bugs have an easy fix which you can apply it yourself. You'll have to editing the theme files, and:
1. Choose /assets/theme.css, and at the very end of the file, paste the following code snippet:
.button--underline .svg { right: 0; top: 0; }
2. Choose /snippets/share.liquid and replace all contents with the following:
{%- capture share_link -%}{{ shop.url }}{{ url }}{%- endcapture -%} {%- capture share_title -%}{{ title | url_param_escape }}{%- endcapture -%} {%- if image -%} {%- capture share_image -%}{{ image | img_url: '1024x' }}{%- endcapture -%} {%- else -%} {%- capture share_image -%}{{ page_image | img_url : '1024x' }}{%- endcapture -%} {%- endif -%} <div class="site-sharing"> <a href="//www.facebook.com/sharer.php?u={{ share_link }}" target="_blank" title="{{ 'general.sharing.facebook_title' | t }}"> <span class="site-sharing__label">{{ 'general.sharing.facebook_label' | t }}</span> <span class="site-sharing__icon" aria-hidden="true">{% render 'theme-symbols', icon: 'facebook' %}</span> </a> <a href="//twitter.com/share?text={{ title }}&url={{ share_link }}" target="_blank" title="{{ 'general.sharing.twitter_title' | t }}"> <span class="site-sharing__label">{{ 'general.sharing.twitter_label' | t }}</span> <span class="site-sharing__icon" aria-hidden="true">{% render 'theme-symbols', icon: 'twitter' %}</span> </a> <a href="//pinterest.com/pin/create/button/?url={{ share_link }}&media={{ share_image }}&description={{ title }}" target="_blank" title="{{ 'general.sharing.pinterest_title' | t }}"> <span class="site-sharing__label">{{ 'general.sharing.pinterest_label' | t }}</span> <span class="site-sharing__icon" aria-hidden="true">{% render 'theme-symbols', icon: 'pinterest' %}</span> </a> </div>
3. Save both files and you're done.
Here's a short video of this:
If "add to cart drawer" doesn't work
We are not sure why, but at a certain point this bug appeared, where you would click on the "add to cart" button, and the theme, instead of showing the sidebar, it would redirect you directly to the cart page (only on desktop). We've fixed this as well, but if you still have this behaviour, you can fix it by editing /assets/theme.js and search for click, touchstart - you will find this in only one space. Remove the comma between these two words, so that it becomse click touchstart.
Watch it below: