How do I get the title of pages to display, when I have the layout set to have the main menu in the left sidebar?
Hey leviticus!
Title bar does not work when header is set to side.
Please go to Appearance > Editor and add following code to Functions.php file
function avia_title_sc( ){
return get_the_title();
}
add_shortcode( 'page_title', 'avia_title_sc' );
then add page title to your pages using following shortcode
[page_title]
Cheers!
Yigit
Thank you for your quick response. Not ideal, but that will be an ok work around.