Version 3.1.1
This update was released on January 29th, 2020.
Changelog
- Added a new option for the collection header ("show collection description below the header") to prevent text visibility issues.
- Fixed the collection breadcrumbs link bug.
- Fixed other small visual issues.
How to manually apply the fix for breadcrumbs collection links
- Go to the theme editor (read this article for more info)
- Open snippets/breadcrumb.liquid file and replace original line 31 - screenshot:
{% capture url %}{{ routes.collections_url }}{{ collection.handle }}{% endcapture %}
with this code:
{% capture url %}{{ routes.collections_url }}/{{ collection.handle }}{% endcapture %}