I’m trying to hide certain products on my site which has retail and wholesale products. My wholesale products are sorted by vendor with the tag “wholesale”. I only want retail products showing unless the customer is logged in.
I’m familiar enough with the code to add this,
{% if customer %}
{% else %}
{% endif %}
but I am not sure how to go about just hiding just the products that are tagged “wholesale”.
Would anyone be able to guide me with this?
Thank you!