How to rename the page title on the All Collections page? It’s this collection-hero__title shopify element, I can’t seem to find it in the shopify settings.
Online Store-Customize
Collection List-Template-Page Heading
Hi @timonj,
Please go to Actions > Edit default theme content > Find title and change it.
Or send me the code of the file, I will check and guide you to change it.
If I helped you, then a Like would be truly appreciated.
You can see and change it from your store admin > Sales Channels > Online Store > Themes > click “…“ in the current theme > Edit default content > click on search Icon, enter Products then you can change it from Page titles > Products
Best regards,
Dan from Ryviu: Reviews & QA
Hello @timonj
Can you share your site URL and the theme name are you using
Hi @timonj
There’s a fairly simple and quick way — you can use the ::before pseudo-element for the element.
If you want to keep the default but just show something different visually:
.collection-hero__title::before {
content: "Browse Our Collections";
}
.collection-hero__title {
font-size: 0; /* hide original text but keep element */
}
.collection-hero__title::before {
font-size: 2rem; /* your desired size */
}
Could you please provide the website URL so that I can guide you in more detail?
Please navigate to Actions > Edit Default Theme Content, locate the Title, and update it as needed.
Alternatively, you can share the code file with me, and I will review it and provide guidance on making the necessary changes.
If you found my assistance helpful, your positive feedback would be greatly appreciated.
Regards :

