Home › Forums › Support › Globally Remove Page Titles › Reply To: Globally Remove Page Titles
September 10, 2016 at 9:39 am
#225451
Lead Developer
Lead Developer
You can ask the BB developers if there’s a way to check if BB is activated on the page using PHP.
Something like:
add_filter( 'generate_show_title', 'tu_alter_title' );
function tu_alter_title() {
if ( get_post_meta( 'beaver_builder_active' ) ) {
return false;
} else
return true;
}
}
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development