badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Put page title in the breadcrumbs bar

#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.