This topic has 6 replies, 2 voices, and was last updated 9 years by EEMedien.

  • Author
  • #43149
     EEMedien
    Participant

    Hello,
    how can I displaying the post-title in the main area, not the breadcrumb area?

    Attachments:
    You must be logged in to view attached files.
    #43156
     sharmstr
    Moderator

    Theme Options > Layout Settings > Page Title Location: Main

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #43173
     EEMedien
    Participant

    Hm… ok, thank you. And both?

    #43186
     sharmstr
    Moderator

    And both? I dont understand your question? Are you asking how to display the title in the breadcrumb and at the top of the article? You said you didnt want it in the breadcrumb, so I dont think thats what you are asking.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #43187
     EEMedien
    Participant

    I want in in the breadcrumb AND at the top of the article.

    #43193
     sharmstr
    Moderator

    You’ll have customize the title function. I havent tried this but set it back to breadcrumb in theme options, then add this to your child theme functions.php file

    COPY CODE
    
    function kleo_title_main_content() {
    	$title_status = true;
    	if( is_singular() && get_cfield( 'title_checkbox' ) == 1 ) {
    		$title_status = false;
    	}
    
    	if ( $title_status ) {
    		echo '<div class="container">';
    		echo '<h1 class="page-title">' . kleo_title() . '</h1>';
    		echo '</div>';
    	}
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #43231
     EEMedien
    Participant

    Thank you! 🙂

Viewing 7 posts - 1 through 7 (of 7 total)

The forum ‘KLEO’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?