How can I alter the page title for a specific collections list?

I am looking to change the browser tab title / page.title of an alternate Collections List template I created. I’m not sure where I can edit this and I preferably want to change just for that page and not go through theme.liquid to set a condition to change the for that specific page.

It currently shows ‘Collections’ and I want to change it to ‘Providers’. I’m using Dawn online store 2.0 theme.

Hi @pam-en3thiong ,

Go to layout > theme.liquid file, find ‘page_title’ and change code: https://i.imgur.com/JmyelQN.png => https://i.imgur.com/1jU1D6E.png

Code:

{%- if request.page_type == ‘list-collections’ -%}
Providers
{%- else -%}
{{ page_title }}
{%- endif -%}

Hope it helps!

If my answer can help you solve your issue, please mark it as a solution. Thank you and good luck.