Hide Page Title on Homepage

I am sure I can hide the page title via CSS, but a lot of themes have the feature to turn off a page title for a particular page. I need to do that on my homepage. Is there a checkbox for this somewhere I cannot find? Did not see it in the docs. Thanks.

Hi @chitown,

I hope you are well today and thank you for your question.

If you set the static page as your home page then you can hide its page title by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Apperance -> Customize -> Sparkling Options -> Other -> Custom CSS

body.home #main header.entry-header.page-header {
  display: none;
}

If it doesn’t help you then could you please share me your site URL to test it?

Kind Regards,
Movin

Thanks Movin. I was hoping the theme had a checkbox to do this as I hate to have sprinkles of custom CSS. No worries.

Hi @chitown,

Currently we don’t have any checkbox in the theme option. We can consider it to be developed in the future version of the theme.

Please advise if you have more questions.

Cheers,
Movin

How to remove the page title on all pages? I’m a Wordpress newbie so the checkbox as chitown mentioned is a great help!

Thanks!

Hi @01labs,

Currently there isn’t any theme checkbox to achieve it but it’s in the to do list.

Currently you can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

body.page #main header.entry-header.page-header {
  display: none;
}

Best Regards,
Movin