How to change title and meta description of /collections page?

I know I’m super-late to the party here, but I was also just trying to do this, and the solutions posted here won’t actually work well for what I’m doing, since the site I’m working on has multiple markets with language/region identifiers in the URL.

So if you’re in the same boat as me, where your URL looks something like this: yourstore.com/en-us/collections (where the “en-us” bit will change, based on the country and language the customer has selected) …

Then here’s the coding you’re going to want to use instead:

{% if request.page_type == 'list-collections' %}
  
  
{% else %}

>>> REST OF YOUR  REGULAR 

Then go into your theme's "locales/en.default.json" file, and add the following:

```markup
"meta": {
    "collections": {
      "title": "ENTER YOUR TITLE HERE",
      "description": "ENTER YOUR DESCRIPTION HERE"
    }
  }

… This way your new title and/or description can be part of your theme’s language files (which can then be easily edited via the “default theme content” settings, as well as translated to other languages if you’re using translation apps).

Hope this helps! :slightly_smiling_face: