All things Shopify and commerce
Hi, does anyone know how to add the product colour and amount of colours available to my product card on the collection pages? I want them to appear underneath as the image shows below if possible 🙂
I'm using the Prestige theme – https://927103-16.myshopify.com/
Many thanks,
Emily
Current look (the product colour is in the title) –
What I'm trying to achieve with the product colour and amount of colour variations added below the title and price on the product card –
Hello @emilyaugstudios ,
Use this code after the title code
{% if product.variants.size > 0 %}
{% assign first_variant = product.variants.first %}
{% for option in first_variant.options_with_values %}
{% if option.name == "Color" %}
<p>Color: {{ option.value }}</p>
{% break %}
{% endif %}
{% endfor %}
{% endif %}
<p> {{ product.variants.size }} colors
Note: Maybe you have to make a little change a/to the theme code. Also you need to fix the existing code.
Thanks
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