A Shopify beginner working with a custom theme wants to display different product images on collection pages versus individual product pages.
Initial Solution:
The original poster resolved their issue using Liquid code: {% for image in product.images offset:1 %} which skips the first image and displays subsequent ones on the product page.
Alternative Approaches Discussed:
Some themes (like Boundless) include a built-in “skip first image” option in the Customize settings.
For modern themes without this feature, a recommended approach involves:
Creating a product metafield (e.g., product.metafields.custom.collection_image) to store the collection page image
Modifying the card-product.liquid snippet to reference this metafield
This method minimizes code changes and simplifies future theme updates
Status: The discussion includes both a working solution and more sophisticated alternatives for different theme architectures. Later participants sought similar guidance for implementing this feature in newer themes like Trade.
Summarized with AI on October 28.
AI used: claude-sonnet-4-5-20250929.
I’m not familiar with Shopify and this is my first project. I have experience in Wordpress, but this is different.
So my issue is: design on collection page has different picture than single product page.
I’ve uploaded 2 images, first image shows on Collection page and that’s okay. On Single product page is it possible to show only second image without first?
How to achieve this, what’s the best way, just to know this is custom theme?
I’ve read your post about displaying a different image on the collection page other than the one the product page where you say at the end that you solved this problem.
I have the same issue as yours, and would like to display different images for the product on the product and collection pages. Would you be so kind and advise me how could you solve this so I’ll try to do the same.