Hi,
The easiest way would be to use some custom code to hide the header on specific posts, since there is no theme option for something like this.
A code like this for example, based on post ID that will hide the header and the breadcrumbs just for that specific post page
– https://www.screencast.com/t/8uNEYNhyt
.postid-18145 .td-header-wrap,
.postid-18145 .entry-crumbs{
display: none;
}
Use the post Id for the post you want in the code, then enter it in Theme panel->Custom CSS. The post Id can be found in multiple ways, when editing the post for example
– https://www.screencast.com/t/76WVEb2PZZ
Thanks
Hi,
Try this instead, it will remove the footer and sub-footer as well
– https://www.screencast.com/t/WFQoZxYBQfj
.postid-18145 .td-header-wrap,
.postid-18145 .entry-crumbs,
.postid-18145 .td-footer-wrapper,
.postid-18145 .td-sub-footer-container{
display: none;
}
Thanks
Ok, thanks…
It works but what I see is, the code actually just hide the sections. it’s loaded and still occupies the spies but just hidden.
I can go with this but if there is a way to completely remove those sections from those post instead of hiding it, it will be great.
Hi,
There is no page or post template at the moment that does not display the header and footer. These elements are meant to appear on the whole website, meaning pages, posts category pages etc.
The only way is to hide them like shown, that would be the easiest if this is required.
Thanks


