How can I delete the 'Produkte' title on the products page?

Topic summary

A user seeks to remove the “Produkte” (Products) title from their collection/products page on their Shopify store (Chiropel.com).

Solution Provided:

  • One community member suggested adding CSS code to hide the title:
.collection-hero__inner .collection-hero__title {
  display: none;
}

Implementation:

  • The CSS should be added to the theme.liquid file (Online Store → Themes → Actions → Edit Code)
  • Insert the code before the closing </body> tag

Outcome:

  • The original poster confirmed the solution worked successfully
Summarized with AI on November 23. AI used: claude-sonnet-4-5-20250929.

Hi, im wondering how i can remove the Title “Produkte” on the products Page. Pls Help, thank you.

Can you share the URL and password so I can check?

Chiropel.com , no password needed.

.collection-hero__inner .collection-hero__title{
     display:none;
}

Try this CSS i think Fix your Issue

worked. Thanks!

1 Like

Hi @Lennardb19

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag


Hope this answer helps.

Best regards,

Victor | PageFly

1 Like