Only those pages I create, I have it on localhost.
I look in the html code of the page, so I do not see h1 tag.
I tried this procedure:
I try adding my child-theme functions.php
add_action('__before_loop', 'titles_patch', 0);
function titles_patch(){
add_filter('tc_post_formats_with_no_header', 'show_titles_in_non_single');
}
function show_titles_in_non_single($post_formats_array){
remove_filter('tc_post_formats_with_no_header', 'show_titles_in_non_single');
if ( ! is_single() ){
return array_diff($post_formats_array,[get_post_format()]);
}
return $post_formats_array;
}
add_action('__before_content', 'exclude_post_formats_titles', 5);
function exclude_post_formats_titles(){
if ( in_array( get_post_format(), apply_filters('tc_post_formats_with_no_header', TC_init::$instance -> post_formats_with_no_header ) ) )
remove_action('__before_content', array(TC_headings::$instance, 'tc_headings_view'));
else
add_action('__before_content', array(TC_headings::$instance, 'tc_headings_view'));
}
But it did not work, the title does not show homepage.