Archived topic
Globally disabling various things
2 replies · Started by Ahmed on August 18, 2016
What is the most efficient way to globally disable the various things that may inhibit your use of elementor, rather than manually disable each time you create a new page
I believe you have to use filters for that. Tom please correct if I'm wrong...
This post might help: https://generatepress.com/forums/topic/disable-content-title/#post-218254
.site-header,
.primary-navigation,
.page-header-image,
.page-header-image-single,
.site-footer {
display: none;
}
That CSS will hide those elements globally.
As for the title, you can do it with CSS (hide it):
.entry-header {
display: none;
}
Or remove it completely using the code Leo pointed to.