Version 2.2.1

This update was launched on the 1st of April 2022.

Changelog:

  • Fixed an issue cased by Shopify where 502 errors were randomly appearing on Orders Page
  • Fixed the favicon not displaying after the last update.

Manual update:

To manually add the code fix, please open /snippets/cart-subtotal.liquid file and replace this code:

	 {%- if additional_checkout_buttons and settings.cart_additional_buttons -%}
	    <div class="additional-checkout-buttons additional-checkout-buttons--vertical">{{ content_for_additional_checkout_buttons }}</div>
	 {%- endif -%}

with this one:

	{%- unless template contains 'order'-%}     
        {%- if additional_checkout_buttons and settings.cart_additional_buttons -%}
          <div class="additional-checkout-buttons additional-checkout-buttons--vertical">{{ content_for_additional_checkout_buttons }}</div>
        {%- endif -%}
	{%- endunless -%}

For the favicon icon fix please open  theme.liquid file and replace this line of code (line 10 in the latest theme version):

<link rel="shortcut icon" href="{{ settings.favicon | image_url: '32x32' }}" type="image/png" />

with this one:

<link rel="shortcut icon" href="{{ settings.favicon | image_url: width: 32, height: 32}}" type="image/png" />

If you don't have experience in editing theme files, please read this: https://help.shopify.com/en/manual/online-store/themes/extend/theme-code

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