Version 4.0.1
This update was released on September 13th, 2021.
Changelog
- Fixed an issue with the payment icons display in footer section from our last 4.0.0 version update.
- Fixed the "sort and filter" text translation.
- Fixed the video popup text color.
- Fixed the "custom cart notes".
How to manually apply the payment icons fix:
- Go to the theme editor (read this article for more info)
- Choose /sections/footer.liquid file and change enabled_payment_type to enabled_payment_types in this code - screenshot.
- Save the file.
How to manually apply the "sort and filter" fix:
- Go to the theme editor (read this article for more info)
- Choose /sections/main-collection-product-grid.liquid file and change this line of code - screenshot:
<div class="collection__filters-title body-text-sm sidebar-title-element"><span>Filter & Sort</span></div>
with this one:
<div class="collection__filters-title body-text-sm sidebar-title-element"><span>{{ 'collections.filter_and_sort' | t }}</span></div>
3. Save the file.
How to manually apply the video popup section text color:
- Go to the theme editor (read this article for more info)
- Choose /sections/video-popup.liquid file and edit the code in these two places as indicated in the screenshot.
- Save the file.
How to fix the custom cart notes:
- Go to the theme editor (read this article for more info)
- Choose /snippets/cart-subtotal.liquid file and add replace this line of code (line 8) - screenshot:
<textarea name="note" id="cartSpecialInstructions" placeholder="{{ 'cart.note' | t }}" aria-label="{{ 'cart.note' | t }}">{{ cart.note }}</textarea>
with this one:
<textarea name="note" id="cartSpecialInstructions" placeholder="{{ 'cart.note' | t }}" aria-label="{{ 'cart.note' | t }}" form="cart">{{ cart.note }}</textarea>
3. Save the file.