Is your feature request related to a problem? Please describe.
I recently had an issue where I was trying to make a variant on the theme template No Header/Footer for specifically a No Header template in a page where I wanted custom navigation. I had copied the template over and changed the filters to show only the footer but my header was still there.
I realized that it was the themer header displaying and needed to disable the theme header for that page.
Describe the solution you'd like
I'd like for an update to /bb-theme-builder/extensions/themes/classes/class-fl-theme-builder-support-bb-theme.php to add a filter like
where the themer header can be disabled without having to add an exception to each page.
Describe alternatives you've considered
As said above, an easy UI solution is to add the page as an exception. Another alternative that I'm using in the meantime is to add the following line to my template so that it's more themer aware:
Is your feature request related to a problem? Please describe.
I recently had an issue where I was trying to make a variant on the theme template
No Header/Footer
for specifically aNo Header
template in a page where I wanted custom navigation. I had copied the template over and changed the filters to show only the footer but my header was still there.I realized that it was the themer header displaying and needed to disable the theme header for that page.
Describe the solution you'd like
I'd like for an update to
/bb-theme-builder/extensions/themes/classes/class-fl-theme-builder-support-bb-theme.php
to add a filter likewhere the themer header can be disabled without having to add an exception to each page.
Describe alternatives you've considered
As said above, an easy UI solution is to add the page as an exception. Another alternative that I'm using in the meantime is to add the following line to my template so that it's more themer aware:
Additional context
For anyone else looking for a BB No Header template for use with themer I've added my code below