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

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

dreamtechzone_5
Shopify Partner
676 1 100

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

Replies 2 (2)

Small_Task_Help
Shopify Partner
1054 45 102

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 %}
  <div>
    {% render 'media', media: product.featured_media %}
  </div>
{% endif %}

{% for media in product.media %}
  {% unless media.id == product.featured_media.id %}
    <div>
      {% render 'media', media: media %}
    </div>
  {% endunless %}
{% endfor %}
To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
dreamtechzone_5
Shopify Partner
676 1 100

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

Code: 8260