From 28b21ab2f50b949d34229db14a990adbcdc04f27 Mon Sep 17 00:00:00 2001 From: Ludo Date: Fri, 26 Jul 2024 17:09:58 +0200 Subject: [PATCH 1/2] Revert a small tweak that wasn't necessary and a reference to the product (#3573) --- snippets/price.liquid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/price.liquid b/snippets/price.liquid index 665b69c008d..03c5d205ab2 100644 --- a/snippets/price.liquid +++ b/snippets/price.liquid @@ -23,8 +23,8 @@ assign compare_at_price = target.compare_at_price assign price = target.price | default: 1999 - assign price_min = target.price_min - assign price_max = target.price_max + assign price_min = product.price_min + assign price_max = product.price_max assign available = target.available | default: false assign money_price = price | money assign money_price_min = price_min | money From 11e07e87146abcdab1f54e1ea154375226965a48 Mon Sep 17 00:00:00 2001 From: Ludo Date: Tue, 30 Jul 2024 12:35:19 +0200 Subject: [PATCH 2/2] also add release notes and update theme version --- config/settings_schema.json | 2 +- release-notes.md | 36 +++++------------------------------- 2 files changed, 6 insertions(+), 32 deletions(-) diff --git a/config/settings_schema.json b/config/settings_schema.json index c08c9e94fbe..8418a6eefeb 100644 --- a/config/settings_schema.json +++ b/config/settings_schema.json @@ -2,7 +2,7 @@ { "name": "theme_info", "theme_name": "Dawn", - "theme_version": "15.0.0", + "theme_version": "15.0.1", "theme_author": "Shopify", "theme_documentation_url": "https://help.shopify.com/manual/online-store/themes", "theme_support_url": "https://support.shopify.com/" diff --git a/release-notes.md b/release-notes.md index eb59dc7acfb..0a87e004198 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,32 +1,6 @@ -Dawn 15.0.0 adds support for combined listing products and products with over 2,000 variants, includes several enhancements for B2B online stores and localization improvements. -### Added -- Support for products with over 2,000 variants (when released) -- Support for combined listing products -- Structured data for Product and Article drops generated by new structured_data liquid filter -- Now possible to enable/disable the display of customer avatars via the Shopify admin (without editing code) -- New “Extra Extra Large” font size option for headers -### Changed -- Default values for sections and blocks are now translated in the store's default language -- Optimized CSS to improve rendering performance -- Store policies are now displayed in the footer by default -- Product page, featured product card and cart now display “Duties included” text -- Country selector no longer requires diacritics to match – for example, in French, typing ‘Etats’ will match ‘États-Unis’ -- Removed drop shadows from variant images in the quick add modal -- Updated root locale keys of the regional locales to their default variations +Dawn 15.0.1 introduces a few bug fixes. ### Fixes and improvements -- Implemented client-side validation to better enforce quantity rules -- Fixed an issue where option value selection was incorrect if the user selected an option before fully loading -- Slideshow updated to address irregular movement during scroll -- Fixed an issue where product variant images were not being displayed on mobile -- Fixed an issue where image thumbnail was not updated when a product variant featured media changed -- Improved quantity accuracy when using Quick Order List to add to cart (no longer dropping clicks) -- Quick Order List allows multiple variants to be updated at once -- Quick Add Bulk now displays “out of stock” for items with no inventory -- Improved quantity accuracy when using Quick Add Bulk to add to cart (no longer dropping clicks) -- Significant network performance improvements for Quick Add Bulk -- Product media correctly displayed in the Quick Add Bulk modal when a user selects a variant -- Several UX improvements for Quick Add Bulk modal on desktop - - Centered "View cart” button text - - Optimized header and footer spacing - - Clicking product name now links to the product details page - - Removed superfluous underlined space on “View full details” link +- Fix issues where when the header section is hidden, some functionalities were broken. +- Update cart errors to be output as a string rather than a HTML element. +- Escape variant option names so that when an option includes quotation marks it doesn’t cause undesired effects. +- Fix placeholder product cards that were not showing a default price and make the check more robust.