September 3, 2013 at 7:28 am
#3751
Sanjip Shah
Participant
@shawnhoffman For the page templates other than default page template the titles will appear in the grey part and for the default page template title will appear in the content area. We have designed the theme this way to highlight the titles of unique page templates. You will have to customize this function attitude_header_title function. You could just add
elseif( is_page() ) {
$attitude_header_title = get_the_title();
}
just below this code
elseif( is_page_template() ) {
$attitude_header_title = get_the_title();
}
Also make a child theme to make this customization so that you won’t lose the changes when you update the theme.