Version 4.0.1

This update was released on September 13th, 2021.

Changelog

  1. Fixed an issue with the payment icons display in footer section from our last 4.0.0 version update. 
  2. Fixed the "sort and filter" text translation. 
  3. Fixed the video popup text color. 
  4. Fixed the "custom cart notes".

How to manually apply the payment icons fix:

  1. Go to the theme editor (read this article for more info)
  2. Choose /sections/footer.liquid file and change enabled_payment_type to enabled_payment_types in this code - screenshot.
  3. Save the file.

How to manually apply the "sort and filter" fix:

  1. Go to the theme editor (read this article for more info)
  2. 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:

  1. Go to the theme editor (read this article for more info)
  2. Choose /sections/video-popup.liquid file and edit the code in these two places as indicated in the screenshot.
  3. Save the file.

How to fix the custom cart notes:

  1. Go to the theme editor (read this article for more info)
  2. 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. 

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.