Is there a way to hide specific products from the product recommendations?

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 %}