Skip to content

Commit

Permalink
Pull in the fix done for release/15.0.1 (Shopify#3574)
Browse files Browse the repository at this point in the history
* Revert a small tweak that wasn't necessary and a reference to the product (Shopify#3573)

* also add release notes and update theme version
  • Loading branch information
ludoboludo authored and NikoBerger committed Aug 8, 2024
1 parent 1d47008 commit c2efd2c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 40 deletions.
2 changes: 1 addition & 1 deletion config/settings_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down
42 changes: 5 additions & 37 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,38 +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.
4 changes: 2 additions & 2 deletions snippets/price.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c2efd2c

Please sign in to comment.