How do I preload the first image on product pages? And the first image in the slider?

Topic summary

Goal: preload the first product image (and first slider image on the homepage) in a Shopify theme to improve perceived speed (LCP/CLS).

  • Product page approach: Use the product object to target the exact image shown (featured image or selected variant). Add a <link rel=“preload” as=“image” …> in the product template/head. Ensure the URL and size exactly match the gallery image (e.g., via img_url filters). If the gallery uses 600px, the preload must also be the 600px version.

  • Responsive sizes: If the displayed image varies by screen size, use imagesrcset and imagesizes on the preload link to mirror the responsive variants.

  • Slider/homepage: No simple dynamic method for the first carousel image; may require custom script to detect and inject a preload. Some sliders clone images, which can make preload benefits negligible.

  • Caveats: Lazy-loading can negate preload benefits; preloading lazy-loaded images is technically possible but offers little gain. Real-world tests showed minimal speed improvement and potential conversion impact.

  • Alternatives: Page prefetch solutions (e.g., Instantpage, apps like Fastify) were discussed; setup and results vary.

Status: No definitive solution; key is to preload exactly the displayed image (including size) and consider responsive and lazy-load behavior.

Summarized with AI on January 4. AI used: gpt-5.

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

1 Like

@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.

2 Likes

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.

1 Like

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.

1 Like

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.

1 Like

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.

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.

1 Like

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' %}
    
  {% endif %}
5 Likes

@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.

5 Likes

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!

Then you use the equal picture dimensions as you do on the product web page, so that the resulting Best Electric Smoker will fit what you use at the product page.

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' %}
    
  {% endif %}
1 Like

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.

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.

2 Likes

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!