Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull in the fix done for release/15.0.1 #3574

Merged
merged 2 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
36 changes: 5 additions & 31 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -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.
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
Loading