Skip to content

Instantly share code, notes, and snippets.

View jinesh24's full-sized avatar

Jinesh Dedhia jinesh24

View GitHub Profile
@jinesh24
jinesh24 / canonical fix
Created July 11, 2019 11:08
Shopify Collection Tags Duplicate Content Fix
{% if template contains 'collection' and current_tags %}
<meta name="robots" content="noindex" />
<link rel="canonical" href="{{ collection.url }}" />
{% elsif template contains 'blog' and current_tags %}
<meta name="robots" content="noindex" />
<link rel="canonical" href="{{ blog.url }}" />
{% else %}
<meta name="robots" content="index,follow">
<link rel="canonical" href="{{ canonical_url }}" />
{% endif %}