How can I sort products by tag in my online boutique?

Hi @vittoriocitro

Welcome to the Shopify Community!

You can use the following code.

{% if product.tags contains "FW22 " %}
 {% include 'product-list-item' %}
{% endif %}
{% if product.tags contains "FW21 " %}
 {% include 'product-list-item' %}
{% endif %}

Regards,

Mehak