Hi @josu24
What exactly do you want the functionality to work?
Like what you are trying to achieve
Another thing is if there is only one stylen_ace tag then you can simply add the below code
{% for tags in product.tags %}
{% if tags == 'stylen_ace' %}
{% break %}
{% endif %}
{% endfor %}
That query will always return partial matches like that and I don’t think there is a way to force it to be exact. That said, you might be able to use tags_not…something like:
tags:"{{ the_tag }}" AND tags_not:"{{ the_tag }} "
Note the space after the second one. I think that should limit searches that match something else, assuming they are always separated by a space.