How to make announcement bar visible for only tagged 'wholesale' customers

Wondering if someone has a code so my announcement bar is only visible to customers tagged with ‘wholesale’

https://pawprosupply.com/

Hi @Rcard

You can add this code to theme.liquid file, after in Online Store > Themes > Edit code to do your request

{% if customer.tags contains 'wholesale' %}

{% endif %}

Hi @Rcard

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:

{% if customer.tags contains 'wholesale' %}

{% else %}

 {% endif %}