Redirect /collections/ to /collections/all in Shopify

Table of Contents
  1. In Shopify Admin go to online store > themes > actions > edit code
  2. In your theme.liquid file paste below code in <head> section for redirection

  {% if template.name == 'list-collections' %}
  <meta http-equiv="refresh" content="0; url=https://www.herbsandkettles.com/collections/all" />
{% endif %}

Related Results