I’m looking to adjust an “if product.tag contains” code but can’t quite figure out what I need to add. I have the following code input currently onto all products tagged “pendant”:
{% if product.tags contains ‘PENDANTS’ %}
Price is for pendant only. Chain sold separately. Shop our chain selection here.
{% endif %}
But I want a certain product vendor to be left out of this. For example - if the product vendor is “x” I don’t want it to fall under this main rule.
Any idea on what I have to add here? I’m looking at my product-template.liquid section. Thanks so much!