A user is attempting to display unique images and descriptions below the main product description using metafields. Text metafields work correctly, but image metafields display the same image across all products despite uploading different images per product.
Suggested solutions include:
Verify metafield configuration: Ensure a product metafield with type “file” exists and is properly connected to each product’s image input
Code implementation: Add Liquid code in product.liquid template to reference the image metafield (e.g., {{ product.metafields.custom.extra_image | img_url: 'master' }})
Use metafield_tag filter: This outputs proper HTML for image/file metafields automatically
Check namespace and key: Ensure metafield references match the created namespace (e.g., product.metafields.extra.image_1)
Multiple respondents offered to review the theme code directly or provided code snippets for proper implementation. The issue likely stems from either incorrect metafield setup or improper Liquid code referencing the metafield values.
Summarized with AI on October 26.
AI used: claude-sonnet-4-5-20250929.
I’m trying to show extra images and descriptions below the main product description on each product page. These need to be different for each product.
I used metafields for this:
The text metafield works fine – I can show different content per product.
But the image metafield isn’t working as expected. It always shows the same image on every product page, even though I’ve uploaded different images for each product for each product. Am I missing something?
Is there a proper way to show unique images per product using metafields?
To fix this issue requires to take a look in your theme file.
Would you mind to share the 4 digits collab code in the p/m so that I can take a look and fix with the issue of showing the different images for different product description.
Please check if you have compatible metafield exists on product with type file, if not, then by clicking the dynamic resource icon, you can create file type metafield product metafield and then connect that metafield to image input. and after that you can update the image in product metafield per product. it should work just fine