Shopify themes, liquid, logos, and UX
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.
Password: Admin
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.
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.
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025