Remove Page Title Errors

Topic summary

A user needed to hide the page title “Hair growth ebook” on a specific page of their Shopify store using the Honey theme. The theme lacked a built-in option for this, and CSS code from ChatGPT wasn’t working.

Solution provided:

  • Add specific CSS targeting the template class to the base.css file:
.template-page .page-template__title {
  display: none !important;
}

Outcome:
The solution successfully resolved the issue. The problem stemmed from using generic CSS selectors rather than the theme-specific class names required by the Honey theme.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hello,

I cannot seem to get my page title to be hidden on one specific page

I want to hide the page title “Hair growth ebook” on this page:

https://emunah-beauty.com/pages/hair-growth-ebook

. The theme Honey does not have the option, and does not like when I try this code from chatgpt:

/* Hide page title */ .page-title { display: none !important; }

Or other variants of it.

What am I doing wrong?

Thank you!!

EB

Hey @emunahbeauty ,

Try this css, please add it to your base.css file :slightly_smiling_face:

.template-page .page-template__title {
display: none !important;
}

Feel free to reach out if you have “any” questions, would be super happy to help.

Cheers!
Shreya | Revize

1 Like

Thank you so much!!! It worked.

1 Like

Anytime :grinning_face_with_smiling_eyes:

Cheers!
Shreya | Revize