How can I delete headings from all pages in my store?

New Member here

Hi

How can I remove the heading sections from all Shopify pages, collections, all collections, and every single page in the store? It’s destroying my design

Thank you in Advance

@Jordan201 to do this, you will have to go into the liquid code and find all references of “{{ page.title }}” and remove it.

https://shopify.dev/api/liquid/objects/page?shpxid=826977a0-16F2-4F0C-17C8-5682116935DA#page-title

If you want to delete it from all the pages, you would have to go into each individual Template and remove it from there.

If you are working in a 2.0 theme, you would go into the Template file, check which Section is being referenced, and delete it from the specific Section file.

For example, in Dawn,
You would go to Collection.json (in Templates folder) which will reference main-collection-banner.
You would then go to main-collection-banner (in Sections folder) and delete {{ page.title }}.

Hello @Jordan201 ,

You can remove this by using CSS or you can follow the methods suggested by @ArturoLopez .

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
.template-page h1 {
display: none;
}

Thank you so much. I will try your solution and see what happen

I really appreciate your reply. I will test your solution and see how things will come

Thank you for your reply