Hi,
1. Copy custom-page.php nomenu-page.php
2. Open nomenu-page.php and change the template name to
Template Name: NoMenu Page Example
3. Choose NoMenu Page Example under Page Attributes metabox.
4. Add this to your child theme’s functions.php. Adjust based on your needs. Comment out any of the FOUR lines that you don’t want to remove.
add_filter('__before_body','remove_header');
function remove_header($content){
if (strcmp(basename(get_page_template()),'nomenu-page.php') === 0) {
// Choose one or more of the following FOUR lines based on need
remove_action ( '__header', array( TC_header_main::$instance , 'tc_prepare_logo_title_display' ) , 10 ); // REMOVE TITLE AND LOGO
remove_action ( '__header', array( TC_header_main::$instance , 'tc_tagline_display' ) , 20, 1 );// REMOVE TAGLINE
remove_action ( '__header', array( TC_header_main::$instance , 'tc_navbar_display' ) , 30 ); //REMOVE NAVBAR/MENU
add_filter('tc_header_classes','__return_empty_array');
}
}