Re: Want to Exclude Certain Collections from “You Might Also Like” Recommendations for Modular Theme

Want to Exclude Certain Collections from “You Might Also Like” Recommendations for Modular Theme

Ulka
Excursionist
20 0 6

IMG_1870.jpegHi - I have two collections - wholesale and custom items - that I want to exclude from related product suggestions.  How can I do this?  

Replies 4 (4)

iffikhan30
Shopify Partner
291 37 54

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,


iffikhan30_0-1703319622097.png

 

The changes reflect take 30sec or 1 mint.

Custom theme and app [remix] expert.

Email: irfan.sarwar.khan30@gmail.com
Chat on WhatsApp
Ulka
Excursionist
20 0 6

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?  

iffikhan30
Shopify Partner
291 37 54

Here is your solution,

 

<div class="container">
<strong>Related Content: </strong> 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 %}
</div>
Custom theme and app [remix] expert.

Email: irfan.sarwar.khan30@gmail.com
Chat on WhatsApp
Ulka
Excursionist
20 0 6

Any guidance on how to do this?