Hi,
I’m trying to add some code that will prevent products of 1 or less stock show up in google searches. I’ve inserted this code in the of theme.liquid but it the product still shows up.
Does anyone have any variations of this code I could try or even something more generic to test this out on, as I have not been able to test if it works for any quantity of product yet.
Thanks,
Calum
{% if product.variants.first.inventory_quantity <= 1 %}
<meta name="robots" content="noindex">
{% endif %}