Hello @Ulka ,
You can do this from shopify free app, the app name is search and discovery, In this app have option to show recommendation related product,
The changes reflect take 30sec or 1 mint.
Thank you. I didn’t know about this feature. However, I do not want to implement this manually for every product, as that would be a lot of work. I want to exclude entire collections from all recommended products. Is that possible?
Any guidance on how to do this?
Here is your solution,
**Related Content:** This product is part of
{% for product_collection in product.collections limit:10 %}
//contains call title of collection which you want to show.
{% if product_collection.title contains 'Best' or product_collection.title contains "Most" or product_collection.title contains "Latest" %}
title has a match and has been removed
{% endif %}
{% endfor %}

