hi im trying to make a flow similar to :
{% if customer.tags contains ‘dealer’ and product.tags does not contains ‘customerstage’%}
{% render ‘product-accordions’ %}
{% endif%}
or something like
{% if customer.tags contains ‘dealer’ %}
{% render ‘product-accordions’ %}
{% elsif product.tags contains ‘customerstage’%}
do nothing
{% endif%}
i’ve tried to replace my do nothing in the second flow with a text flow but the product-accordions is always showing
any help will be appreciate thank you !