Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #525827

    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?

    #526262

    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

    #526420

    Thank you for your quick response. Not ideal, but that will be an ok work around.

    #526656

    Hi,

    Great, glad we could help. Please let us know if you should have any more questions on the topic.

    Thanks,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.