carolineschnapp
8/12/2014 - 9:53 PM

Not indexing blog pages and collection pages filtered with a tag. Canonical links.

Not indexing blog pages and collection pages filtered with a tag. Canonical links.

{% if template contains 'collection' and current_tags %}
  <meta name="robots" content="noindex" />
  <link rel="canonical" href="{{ shop.url }}{{ collection.url }}" />
{% elsif template == 'blog' and current_tags %}
  <meta name="robots" content="noindex" />
  <link rel="canonical" href="{{ shop.url }}{{ blog.url }}" />
{% else %}
  <link rel="canonical" href="{{ canonical_url }}" /> 
{% endif %}