How can I hide the 'All' collection title in the Dawn theme?

Hi more-knowedgable-than-me people,

I am new to Shopify, and I am using the “Dawn” theme to set up my site. I have my products broken into collections. As I understand it, the only way to manually sort my products is to create a collection called “All,” and put everything in it. I can do this, but I’d like to hide the word “All” that appears at the top of my products page. (Side note: If I delete this collection, I get the word "Products at the top of the page, and I don’t want that either.)

Is there a way to basically say IF CollectionName = “All” THEN "Don’t display CollectionName ?

Thanks for helping a newbie!

-Elliott

Hi,

Yes there check out these references:

https://shopify.dev/api/liquid/basics/operators

https://shopify.dev/api/liquid/objects/collection

and the liquid code can be something like this:

{% if collection.title != ‘All’ %}
// show the title here…
{% endif %}

Any chance I could press you for a little more hand-holding. I’m not quite
sure where to add this code.

Thanks.
Elliott