✨ New
Customizable product sorting by priority weight
This feature allows for personalized sorting of products according to their designated sort priority weight.
You can assign a value to each product using the newly introduced sortPriorityWeight
field. You can then arrange the products in ascending or descending order, based on their priority weights, through the SORT_PRIORITY_WEIGHT
sorting method.
This new sorting feature gives you more freedom to arrange your products the way you want in your storefront. For example, you can make popular or sponsored products appear first by assigning them higher priority weights.
{
products(
first: 25
sortBy: {
field: SORT_PRIORITY_WEIGHT,
direction: ASC
}
) {
edges {
node {
id
name
description
sortPriorityWeight
}
}
}
}
💎 Changed
Performance improvements to checkout
Significant performance improvements have been made to the checkout process, resulting in faster speeds, particularly for shopping carts with a large number of line items (25 or more).
🪲 Fixed
Fixed a security vulnerability issue with the password reset flow, where the system would present an error if the email was incorrect or inactive.
Fixed an issue where changing the quantity of an order line in a draft order reduced the variant's price for the order.