Hi @selinadg ,
You can add tag to these products, ex: grouppeople.
Then when displaying the product you just check the tag and don’t show it:
{% for tag in product.tags %}
{% if tag contains ‘grouppeople’ %}
hide
{% break %}
{% endif %}
{% endfor %}
Hi @selinadg ,
You can add tag to these products, ex: grouppeople.
Then when displaying the product you just check the tag and don’t show it:
{% for tag in product.tags %}
{% if tag contains ‘grouppeople’ %}
hide
{% break %}
{% endif %}
{% endfor %}