Make it say on the variant dropdown "-- Select Size --" when opened ( Prestige Theme )

Make it say on the variant dropdown "-- Select Size --" when opened ( Prestige Theme )

dreamtechzone_5
Shopify Partner
676 1 100

Hello Everyone!

 

can you make it say on the variant dropdown "-- Select Size --" when opened (Desktop)
It's fine in mobile mode. I want to keep it in desktop mode. I have added 2 images below. The first one is in desktop mode. The second one is in mobile mode. The --" select size --" is showing in mobile mode.

 

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

Password: Admin

 

Screenshot 2025-05-04 140237.pngMobile.jpg

Replies 2 (2)

IamThony
Shopify Partner
18 1 5

Hello @dreamtechzone_5 

You can definitely possible to make to make the select variant default on desktop, you will have to place some strings of code in your product-template.liquid or main-product.liquid, depending on your theme: 

<select name= "id" id="ProductSelect">

<option value="" disabled selected>-- Select Size --</option>

{% for variant in product.variants %}

<option value= "{{ variant.id }}">{{ variant.tittle }}</option>

{% endfor %}

</select>

 

Let me know if this helps.

Thony
Contact me if you need more help
Email: iamaustine597@gmail.com
dreamtechzone_5
Shopify Partner
676 1 100

I can't see the product-template.liquid file in my Prestige theme. I can see the main-product.liquid file but I don't know where to paste the code. Please give me instructions. Thank you.