Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Hi!
I've been wanting to preload the first image on product pages for quite some time now. As have I been wanting to preload the first image in the slider on our home page.
How can I do that?
Something like <link rel="preload" as="image" href="{ product.image[0]}">
Solved! Go to the solution
This is an accepted solution.
You can set responsive sizing in preloads with the imagesrcset attribute.
See this example from https://web.dev/preload-responsive-images/
<link rel="preload" as="image" href="wolf.jpg" imagesrcset="wolf_400px.jpg 400w, wolf_800px.jpg 800w, wolf_1600px.jpg 1600w" imagesizes="50vw">
Another thing to keep in mind is that lazyloading will slow down your image loading speed, so that might make preload redundant.
Another other thing is if your using something like Slick slide or Fotorama, the original image will be cloned and readded by the slider, so your image load time will be affected by that and preload will be redundant.
@Preben_Frenning did you figure out a good way to this yet?
I am looking for some examples of how to properly prefetch or preload items in a Shopify theme.
Something like loading product images on product pages on hover from a link on a collection page. Or prefetching collection page items from a link on the nav.
If your on the product page, you can access the product object for that product.
So product.media.first will get you the first media element, in your case an image.
Then you use the same image dimensions as you do on the product page, so that the resulting url will match what you use on the product page.
As for dynamically getting the first image of the carousel in the homepage, I have no idea besides writing a tool to find the image and dynamically inject a preload into your theme.
Anyway we can do something like this Sapper - Prefetch in this video is shows how we can pre load data before the use goes to that page.
I am trying to set this up with themekit and webpack but haven't quite figured it out yet.
This technique looks like it can be added to the code manually to places you know will work. I'll try adding it to the menu and collection pages this week.
Thanks! I'll try this. Though find it a bit challenging to have it preload the same image size. Will need to look more into how that actually is determined in Shopify.
I haven't had much time to look more into it unfortunately, but I am also looking to solve something similar. Ideally, also prefetching the cart page after adding a product to the cart with AJAX as well.
I did try Instantpage a little bit, but never had time to configure it properly to work well with Shopify. But I'm gonna try some manual prefetching next time I am working on performance. It felt great, and a lot faster, but had a negative impact on our CR, most likely because something interfered.
The preloading of the first image is mainly to improve the perceived speed and rendering, with the purpose of getting a better CLS and LCP.
You can preload the whole site by using this app: Fastify. The app automatically preloads the page that users are going to click on.
For me working as charm like this:
{% if template contains 'product' %}
<link rel="preload" href="{{ product.media.first | img_url: 'master' }}" as="image">
{% endif %}
@DariusWS DariusWS solution is the way to go but make sure about a few things:
You need to preload exactly the image displayed, product.media.first will return the first product image. You want to preload the featured_image or selected_or_first_available_variant image. This depends on your setup. Also, make sure that your img_url filter matches.
Preload exactly the same image displayed in your product gallery, otherwise, you can do more harm than good.
Thanks for the advice and code here, I’ve been trying to find how to do this for a while as web.dev always recommends it on my product pages. Do you add this code to the header tag on the theme liquid file, or the product page liquid file? Thanks in advance!
What about if my PLP is loading a specific version of the file that is 600px? Your solution would return /image_file_name.jpg?v=1621006829 , but I need it to return /image_file_name_600x.jpg?v=1621006829
It has to be exactly the same, so if the product has a size of 600, the preload has to also have it,
So refactoring the previously shared code snippet:
{% if template contains 'product' %}
<link rel="preload" href="{{ product.media.first | img_url: '600x' }}" as="image">
{% endif %}
I gave the solution. But after some testing didn't see much of an impact on speed. Also worth to mention there is lazyloading with different screen sizes, I mean with js help it calculate what is screen size and load the needed image. Can't find a way to set the correct image size for preloading, because at the time I don't know the screen size.
This is an accepted solution.
You can set responsive sizing in preloads with the imagesrcset attribute.
See this example from https://web.dev/preload-responsive-images/
<link rel="preload" as="image" href="wolf.jpg" imagesrcset="wolf_400px.jpg 400w, wolf_800px.jpg 800w, wolf_1600px.jpg 1600w" imagesizes="50vw">
Another thing to keep in mind is that lazyloading will slow down your image loading speed, so that might make preload redundant.
Another other thing is if your using something like Slick slide or Fotorama, the original image will be cloned and readded by the slider, so your image load time will be affected by that and preload will be redundant.
Can you preload images that are lazy-loaded?
Yes, but the benefit of preloading it is lost, since the image loading would still be delayed. its like freezing hot soup!
Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024