Hiding One Product Image on Individual Product Pages?

I’m unsure if I’m allowed to re-post a thread on the same topic but I received only one answer for this and it didn’t work.

My Shopify store is built with the Brooklyn theme. I’m trying to hide the second image on all individual product pages. It’s only in Shopify so it can be featured as the thumbnail on the All Products page.

It seems like this would be an easy problem to tackle but there are no other threads on this issue and it seems like no one can figure it out.

Hi, @IlluminateLabs .

Tira here, from Shopify Support.

I’m sorry to hear that your question hasn’t been answered previously. Thank you for posting it again in the forums. I recommend looking into hiring a Shopify Expert for this customization. Shopify Experts offer help with code customizations. You can find a list of Experts here: Hire a Shopify Expert. You can also access it right from your Shopify admin, here.

I’m also curious to see what suggestions the community has, as well!

Hi @IlluminateLabs

You want to hide second image on product page for all products or any selected?

Hi Jasoliya, I want to hide the second image on every individual product page.

Which theme you have? send me store url

Brooklyn theme. URL is: https://illuminatelabs.io/

Shopify URL is: illuminate-labs.myshopify.com

Hi @IlluminateLabs

Follow this:

  1. Section->product-template.liquid->find bellow comment on page:
{% comment %}
   Display rest of product images, not repeating the featured one
{% endcomment %}

Now you can see bellow for loop next to this comment:

{% for image in product.images %}

Now offset:2 add at end of for loop so it look like bellow:

{% for image in product.images offset:2 %}

Note: that means loop skip 1st and 2nd image start from 3rd

2 Likes

Hello I am using the narrative theme and am trying to accomplish this same task! I would like to simply hide the second thumbnail image on every individual product page.

Store - alphamotif.net

Password- fleuts

Hey!

This worked a treat except it’s not offsetting 2, rather all of my images.

I am using the Venture theme.

I really appreciate your help.

Thanks!

You want to hide all thumb images?

No, just the second image.

But the offset hides them all.

If so then this code must work

{% for image in product.images **offset:2** %}

May be you are adding wrong code ? just add offset:2 so it start from 2nd image and skip first 2.

I don’t understand what this solution is saying.