Can someone please help me add a "more colors’ tag on the products that are available in more colors? Thank you
Topic summary
A user seeks help adding a \
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?