How can I change the meta description in the All Collection on Shopify?

I currently have 57 pages don’t have meta descriptions, on closer inspection the url’s are all Collections/all 1-57.

On the collection pages, it doesn’t show the All Collection.

Anyone know how to find this collection in Shopify so i can change the meta description on this collection.

Hi @Halfpipe75
/collections/all is default shopify page to show all products, You will not see it at backend. Although, if you want to add meta description for this, you can code it static in theme.liquid by checking collection.handle
Code will be something like this:

{% if collection.handle == "all" %}
          
      {% else %}
      
      {% endif %}

You can modify it as per your need.
Thanks!

Hi, this can be acheived by following the response I gave in one of the other forum posts - How to Set Meta Description for All Products (Collections List) Page? - I was frustrating me as well!