Thank you. d4z_c0nf you are the man! You were absolutely right. I had forgotten that I added this code for some testing of displaying both the logo and title in the header. I removed the code and it works now.
add_action( ‘__after_logo’ , ‘display_my_site_title’);
function display_my_site_title() {
//first checks if there is a logo uploaded
$logo_src = esc_url ( tc__f( ‘__get_option’ , ‘tc_logo_upload’) ) ;
if ( empty($logo_src) )
return;
//then print the site title after
printf(‘<h1>%4$s</h1>’,
esc_url( home_url( ‘/’ ) ),
esc_attr( get_bloginfo( ‘name’) ),
esc_attr( get_bloginfo( ‘description’ ) ),
esc_attr( get_bloginfo( ‘name’) )
);
}