Hi,
I want to show tags that contain a string in a comma separated list. I can list the tags and strip out the parts I want to display, but how do I get this is as a comma separated list?
{% for tag in product.tags %}
{% if tag contains ‘Style’ %}
{{ tag | replace: “Style_”, “” }}
{% endif %}
{% endfor %}