How can I add a 'more colors' tag under product titles?

Topic summary

A user seeks help adding a \

Summarized with AI on November 24. AI used: claude-sonnet-4-5-20250929.

Can someone please help me add a "more colors’ tag on the products that are available in more colors? Thank you

Hello @Joms

It’s the GemPages support team and glad to support you today.

You can try the code show tag from the product admin.
if the product has the tag: ‘more colors’ then the ‘More Colors’ text will be displayed

{% for t in product.tags %}
     {% if t contains 'more colors' %}     
            More Colors      
     {% endif %}
  {% endfor %}

Hope my solution can work and support you!

Kind & Best regards!

GemPages Support Team.

@GemPages Thank you so much! can you please tell me where in the code I need to insert this code?