Hello,
1- How to hide a free $0 sample from Shopify but still have it online?
I want to hide it from search and also not visible on the catalog.
I still see it in the collections/all and do not know how to hide from it.
2- How to hide from SEO? I found this code, will it work?
-
Edit your layout/theme.liquid file and add the tag only for a specific product handle.
Replace THING with the handle of the product you want to hide.
{% if template contains "product" and product.handle == "THING" %}
<meta name="robots" content="noindex">
{% endif %}
Thanks,
C.