Hi All,
I have read the following Shopify post about how to exclude a page from Google: https://help.shopify.com/en/manual/promoting-marketing/seo/hide-a-page-from-search-engines
I have followed the instructions and pasted the following code in my theme.liquid file:
{% if handle contains 'shipping-tab-top' %}
<meta name="robots" content="noindex">
{% endif %}
I would like to find out how I can exclude multiple pages in the same “if” statement above?
Thanks!