Announcing Online Store 2.0
Online Store 2.0 is an end-to-end overhaul of how themes are built at Shopify, launched June 2021. While the information in the following article is still correct, it doesn't account for Online Store 2.0 best practices, and may not include references to recent features or functionality. To learn more about how to build with Online Store 2.0, visit our updated documentation.
Visit docsOne of the most crucial elements of any ecommerce site is the product page, and as a developer, it’s your responsibility to ensure your client’s products are easy to select and add to the cart. According to astudy by Conversio, only eight percent of product page traffic converts to a sale. So, reducing customer effort on the product page, even if only by a few clicks, can have a significant effect on conversions.
Often, clients will want to prioritize specific product variants for greater visibility on the product page. This could be because a certain variant is on sale, or because demand is very high for it. In these cases, the merchant will want to make it as easy as possible for customers to add that variant to their carts—especially during fast-paced sales events like BFCM.
With careful use of Liquid, developers can use deep-links to automatically select particular variants on a product page. This allows clients to highlight key variants and minimize the number of mouse clicks their customers need to make during the sales flow.
In this article, I’ll demonstrate two practical ways to work with deep-linked product variants, and discuss best practices for making the customer experience more intuitive.
If you’d like more tutorials on how to make browsing easier for buyers, you can also learn how to build a customizablerelated productssection.
Learning Liquid: Getting Started with Shopify Theming
Get this free guide and learn practical tips, tricks, and techniques to start modifying, developing, and building Shopify themes.
By entering your email - we’ll also send you marketing emails related to Shopify. You can unsubscribe anytime. Note: the guide won't be delivered to role-based emails, like info@, developer@, etc.
Diving into deep-links
To begin, we’ll need to understand how deep-linked variants work with Shopify product page URLs. For every variant of a product created on Shopify, there’s a unique variant ID.Our help docsshow how variant IDs can be found.
It’s possible to create a deep-link directly to a specific variant by adding a query string to a product page URL. You can achieve this by appending the?variant= query
parameter to the URL of the product, along with the ID of the variant.
For example, if you wanted to link to theSmall
variant of a t-shirt, you could do so through a URL that looks like this:
http://liamstest.myshopify.com/products/ocean-blue-shirt?variant=12207472312376
In this example, the variant ID is12207472312376
. When the?variant=
query parameter is added to this URL, we are deep-linking to the small variant of the Ocean Blue Shirt.
这意味着当单击这个URL,刺激uct page will load, containing all the information associated with the deep-linked variant. The correct drop-down option, product image, and price should be pre-selected when a deep-linked page loads.
Now we can use Liquid attributes andcontrol-flow tagson theproduct-template
section to output the attributes of this deep-linked variant to the different elements of the product page.
You might also like:How to Use Math Filters with Liquid.
Enabling variant deep-linking on the product page
The first step is to implement conditional Liquid logic when we are building our selection menu for product options. This will identify if a variant is deep-linked, and if so, will load this variant as the default selection in the product’s drop-down option box.
We’ll need to find the container which holds the selection menu, and usecontrol-flow tagsto create a set of instructions for product options. The code for this selection container could look like this:
A crucial attribute here isproduct.selected_or_first_available_variant
, which returns the variant that is deep-linked if there’s a valid?variant= query
parameter in the URL. If there’s no valid deep-link in the URL, the first available variant is output.
If the variant ID in the URL matches with a variant in the current iteration of thefor
loop, it will outputselected="selected"
, causing that option in the drop-down to be selected when the template is loaded.
It’s important to note that in order for a variant to be considered available, itsvariant.inventory_quantity
must meet one of the following conditions:
- Its
variant.inventory_quantity
is greater than zero - The product inventory itself is not being tracked by Shopify
- Customers are able to purchase this product when it's out of stock
You might notice that there are additional control flow tags here too, which disable the selection box completely when no variants are available. This improves the user experience when a product is sold out, as it replaces the selection box withSold Out
text. However, it’s not necessary for pre-loading a specific variant.
In order for the correct product prices to be output, we could make use of theproduct.selected_or_first_available_variant
syntax again, in places where the price and compare-at price would be displayed. These attributes would beproduct.selected_or_first_available_variant.price
andproduct.selected_or_first_available_variant.compare_at_price
, respectively.
However, another option is to usevariable tagsto set up a named variable for the currently-selected variant, which would make our code leaner and more readable. This could look like:
{%- assign current_variant = product.selected_or_first_available_variant -%}
Now, when you want to output the price of the selected product, you would use the variablecurrent_variant.price
orcurrent_variant.compare_at_price
, if you need the old price. This approach shortens the long lines of code and makes section files more legible for clients or other members of your team.
Similarly, you could create a variable for the selected variants image, which would allow you to avoid using verbose attributes when adding image-related code. This can be set up like:
{%- assign featured_image = product.selected_or_first_available_variant.featured_image | default: product.featured_image -%}
The easily writtenfeatured_image
will now return the image associated with the currently selected variant, or the product’s own featured image. We can see here that thedefault
Liquid filter is setting a default, or fallback value, in the case where the selected variant has no associated image.
Last but not least, to update the variant image as the user selects different variants, we’ll need to use JavaScript. This will add option selection functionality to the product page. Below is the function used on theSlate starter theme, which is called when a variant input changes:
This function also calls some other helper functions like_updateImages
and_updateSKU
,确保当客户开关变体,the correct data is loaded.
You might also like:How to Build for Modern Browsers (With Legacy Browser Support).
Enabling variant deep-linking on the cart page
Now that your clients can draw special attention to specific variants, we’d like the variant image to carry across to the cart page. This creates a continuous, consistent experience, and avoids the chance of a customer being confused if they see an image in their cart that they didn’t expect.
This means the product image visible on the cart page should be the selected variant image, rather than the product’s featured image. To display the variant image on the cart page, look for where you're outputting thefeatured_image
attribute of the line item variable.
Instead of using an attribute likeitem.featured_image
, we can simply use theitem
object with theimg_url
filter. For line items,img_url
returns the URL of the line item's variant image. If the variant doesn’t have an assigned image,img_url
returns the URL of the product's featured image.
Once this is set up, it could appear like this:
You can also see that we are applying a specific square size of 95 pixels to the image, as well as requesting a doubled pixel density. You can implement any size that suits the requirements of your client here. More options for this versatile filter can be found in our article onhow to manipulate images with theimg_url
filter.
Finally, we want to ensure that the line item title links back to the selected product variant, rather than simply to the product. Since the line item is aware of what variant was added to the cart, it should deep-link back to the product's variant instead.
To achieve this, we can use theitem.url
attribute, which will always link to the variant itself. Other attributes likeitem.product.url
orproduct.url
would link to the product without deep-linking. To ensure a cohesive and consistent experience for customers, we should favor the deep-linked option, since this will reduce effort and support a seamless experience.
Variants have value
变异是一种强大的appro筛面的产品ach for boosting conversions, as the checkout process becomes more streamlined. Making the customer experience more intuitive will add value to your clients’ stores and add some extra billable hours to your project. Hopefully with the help of this article, building this functionality will be a little bit faster.
Grow your business with the Shopify Partner Program
Whether you offer web design and development services or want to build apps for the Shopify App Store, the Shopify Partner Program will set you up for success. Join for free and access revenue share opportunities, developer preview environments, and educational resources.
Sign up