{% for tag in customer.tags %}
{% if tag contains ‘Sales’ %}
{% assign customerTags = tag %}
{% endif %}
{% endfor %}
{% if customerTags %}
{% endraw %}{{ 'cart.general.checkout' | t }}{% raw %}{% endif %}
Something like this.
{% for tag in customer.tags %}
{% if tag contains ‘Sales’ %}
{% assign customerTags = tag %}
{% endif %}
{% endfor %}
{% if customerTags %}
{% endraw %}{{ 'cart.general.checkout' | t }}{% raw %}{% endif %}
Something like this.