Skip to content

Commit ce670c5

Browse files
authored
Pull in the fix done for release/15.0.1 (#3574)
* Revert a small tweak that wasn't necessary and a reference to the product (#3573) * also add release notes and update theme version
1 parent a723f14 commit ce670c5

File tree

3 files changed

+8
-34
lines changed

3 files changed

+8
-34
lines changed

config/settings_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "theme_info",
44
"theme_name": "Dawn",
5-
"theme_version": "15.0.0",
5+
"theme_version": "15.0.1",
66
"theme_author": "Shopify",
77
"theme_documentation_url": "https://help.shopify.com/manual/online-store/themes",
88
"theme_support_url": "https://support.shopify.com/"

release-notes.md

Lines changed: 5 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,6 @@
1-
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.
2-
### Added
3-
- Support for products with over 2,000 variants (when released)
4-
- Support for combined listing products
5-
- Structured data for Product and Article drops generated by new structured_data liquid filter
6-
- Now possible to enable/disable the display of customer avatars via the Shopify admin (without editing code)
7-
- New “Extra Extra Large” font size option for headers
8-
### Changed
9-
- Default values for sections and blocks are now translated in the store's default language
10-
- Optimized CSS to improve rendering performance
11-
- Store policies are now displayed in the footer by default
12-
- Product page, featured product card and cart now display “Duties included” text
13-
- Country selector no longer requires diacritics to match – for example, in French, typing ‘Etats’ will match ‘États-Unis’
14-
- Removed drop shadows from variant images in the quick add modal
15-
- Updated root locale keys of the regional locales to their default variations
1+
Dawn 15.0.1 introduces a few bug fixes.
162
### Fixes and improvements
17-
- Implemented client-side validation to better enforce quantity rules
18-
- Fixed an issue where option value selection was incorrect if the user selected an option before fully loading
19-
- Slideshow updated to address irregular movement during scroll
20-
- Fixed an issue where product variant images were not being displayed on mobile
21-
- Fixed an issue where image thumbnail was not updated when a product variant featured media changed
22-
- Improved quantity accuracy when using Quick Order List to add to cart (no longer dropping clicks)
23-
- Quick Order List allows multiple variants to be updated at once
24-
- Quick Add Bulk now displays “out of stock” for items with no inventory
25-
- Improved quantity accuracy when using Quick Add Bulk to add to cart (no longer dropping clicks)
26-
- Significant network performance improvements for Quick Add Bulk
27-
- Product media correctly displayed in the Quick Add Bulk modal when a user selects a variant
28-
- Several UX improvements for Quick Add Bulk modal on desktop
29-
- Centered "View cart” button text
30-
- Optimized header and footer spacing
31-
- Clicking product name now links to the product details page
32-
- Removed superfluous underlined space on “View full details” link
3+
- Fix issues where when the header section is hidden, some functionalities were broken.
4+
- Update cart errors to be output as a string rather than a HTML element.
5+
- Escape variant option names so that when an option includes quotation marks it doesn’t cause undesired effects.
6+
- Fix placeholder product cards that were not showing a default price and make the check more robust.

snippets/price.liquid

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
assign compare_at_price = target.compare_at_price
2525
assign price = target.price | default: 1999
26-
assign price_min = target.price_min
27-
assign price_max = target.price_max
26+
assign price_min = product.price_min
27+
assign price_max = product.price_max
2828
assign available = target.available | default: false
2929
assign money_price = price | money
3030
assign money_price_min = price_min | money

0 commit comments

Comments
 (0)