Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save taricco/667209c8c62a58b1bcf614d44f1291ca to your computer and use it in GitHub Desktop.

Select an option

Save taricco/667209c8c62a58b1bcf614d44f1291ca to your computer and use it in GitHub Desktop.
add_filter( 'generate_show_title', 'plm_remove_page_title', 20 );
function plm_remove_page_title($output) {
if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_enabled() ) {
return false;
}
else {
return $output;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment