Home Page Image Doesn't Match Product Page First Image

Hello,

When I go onto my store’s home page the topmost image is what customers see but as soon as they click the product page the image on the bottom becomes the default first page in the slideshow. Is there any way to fix this? For my theme I am currently using “Taste.” Let me know if you have any questions and thank you for all and any advice.

Best,

Samuel Albert

Look at the inside of the template image cycle that whether to remove the first figure

Hi @SAWheat ,

Please go to main-product.liquid file, find ‘product-thumbnail’ and change code here:

Code:

{%- for media in product.media -%}
                - {%- assign media_position = media_position | default: 0 | plus: 1 -%}
                    {% render 'product-thumbnail', media: media, position: media_position, loop: section.settings.enable_video_looping, modal_id: section.id, xr_button: true, media_width: media_width, lazy_load: true %}
                

            {%- endfor -%}

Hope it helps!

1 Like

Thank you! Looks good!

1 Like