-
Author
-
January 23, 2015 at 10:45 #43149EEMedienParticipant
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.January 23, 2015 at 12:41 #43156sharmstrModeratorTheme 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 23, 2015 at 14:34 #43186sharmstrModeratorAnd 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 23, 2015 at 14:35 #43187EEMedienParticipantI want in in the breadcrumb AND at the top of the article.
January 23, 2015 at 15:02 #43193sharmstrModeratorYou’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 CODEfunction 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.