Feature image as a 1st image on the product page ( Prestige version 10.4.0 Theme )

Hello Everyone!

How to show feature image as a 1st image on the product page in shopify prestige theme. I don’t want to change anything else. I just want the feature image to show as the first image on the product page. Please help me. Thank you.

Store: https://puppies-paws-shop.myshopify.com/products/led-dog-collar-luminous-usb-cat-dog-collar-3-modes-…

Password: Admin

Hi,

Hope this will help

  • Find Product Template and Look for this line
    {% for media in product.media %} or something similar

Reorder the Images

Code example

{% if product.featured_media %}
  
    {% render 'media', media: product.featured_media %}
  

{% endif %}

{% for media in product.media %}
  {% unless media.id == product.featured_media.id %}
    
      {% render 'media', media: media %}
    

  {% endunless %}
{% endfor %}
1 Like

I don’t understand. Where should I paste the code? Can you add it to my store and give me instructions?

Code: 8260