ok thanks for that however for those of us that would like the feature you will need to modify the code. To do this open following file attitude\library\structure\header-extensions.php
Then go down to line 510 remove the last elseif statement and copy line 511 to replace line 515 please see code below to help
function attitude_header_title() {
if( is_archive() ) {
$attitude_header_title = single_cat_title( '', FALSE );
}
elseif( is_404() ) {
$attitude_header_title = __( 'Page NOT Found', 'attitude' );
}
elseif( is_search() ) {
$attitude_header_title = __( 'Search Results', 'attitude' );
}
elseif( is_page_template() ) { ******REMOVE****
$attitude_header_title = get_the_title();******MOVE****
} ******REMOVE****
else {
$attitude_header_title = ''; ******REPLACE****
}
return $attitude_header_title;
}
endif;