Show secret link to specific customers

PHOTO EMBED

Sun Oct 23 2022 15:38:21 GMT+0000 (Coordinated Universal Time)

Saved by @wren_digital

{% assign vip_customer = false %}
{% if customer %}
 {% for tag in customer.tags %}
  {% if tag == 'VIP' %}
    {% assign vip_customer = true %}
   {% endif %}
 {% endfor %}
{% endif %}

{% if vip_customer %}
 <a href="/pages/secret-link">Secret Link</a>
{% endif %}
content_copyCOPY