Where can I find the title "Products" when the collections called by "all"?

Hi All,

I’m using the Shopify Theme Dawn. I want to change the title “Products” on the collections page.

I can see this title when the collections are called by “all”, and all products are listed out.

I have checked all related pages in the Editor but cannot find it.

I appreciate any help.

Thank you.

Roland

You can add this code to override the text with your custom text.

On main-collection-banner.liquid replace line number 17

{{- collection.title | escape -}}

with

{% if collection.title == 'Products' %}
          Custom Product Title
          {% else %}
          {{- collection.title | escape -}}
          {% endif %}

I appreciate your help. Thank you! It works perfectly!

Glad to hear that. Do checkout our app, where you can create any theme edit task and we will work on it. The first task is FREE!

1 Like