How to Remove / Hide Page Titles


If you want to remove or hide the page title on your site, the theme you are using handles this. Unfortunately, Stackable currently does not have any influence to adjust the hiding or removal of the page title in your Posts or Pages.

A workaround to remove the theme’s page title in your home page is to add this Custom CSS in the Theme Customizer:

.page .entry-title {
display: none;
}

If you want to remove the theme’s page title in all your pages, you can add this Custom CSS:

.home .entry-header, .page .entry-header {
   display: none;
}
❗ The Custom CSS works with a lot of themes, however, you may need to customize it to fit the theme you are using.