Hi there,
Is it possible to hide products from appearing in the recommended products section in theme Boost?
I’ve tried the steps in this article (https://community.shopify.com/topic/1319310), but it doesn’t work with my theme.
I really appreciate any help you can provide.
@Shelliee
Hello, Yes it is possible to hide products from appearing in the recommended products section
It a customization and time-consuming work so can you please share your store details
or you can join me on skype or mail please check my Signature
Hey @Shelliee
Here’s a general example of how you might modify the code. This example assumes that you’re using product tags to mark the products you want to hide (e.g., a tag like “hide-from-recommendations”).
{% for product in recommendations.products %}
{% unless product.tags contains 'hide-from-recommendations' %}
{% endunless %}
{% endfor %}
If you give access to your theme then i can rocommend exact solution that will work for your theme.
Thanks