-
Author
Tagged: bbpress, title, visible, breadcrumbs
-
March 7, 2015 at 18:07 #49100marinushendrikParticipant
No breadcrumbs are visible on the forum below the title.
Though my content-single-forum.php states:
COPY CODE<div id="bbpress-forums"> <?php bbp_breadcrumb();?> ...
But these are not visible and I can’t seem a way to
enable these. They are visible in the breadcrumb section.However, I want these below the forum title as in the
template. How can I show these breadcrumbs?March 7, 2015 at 20:34 #49124sharmstrModeratorlink please
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
March 7, 2015 at 21:45 #49134sharmstrModeratorI’m not positive, but none of the bbp_breadcrumbs return anything, so perhaps kleo is overriding it.
The breadcrumb in the title uses kleo_breadcrumb();
COPY CODEfunction kleo_breadcrumb($args = array()) { if ( function_exists('bp_is_active') && !bp_is_blog_page() ) { $breadcrumb = new buddypress_Breadcrumb_Trail($args); } elseif (function_exists('is_bbpress') && is_bbpress()) { $breadcrumb = new bbPress_Breadcrumb_Trail($args); } else { $breadcrumb = new Breadcrumb_Trail($args); } return $breadcrumb->trail(); }
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
March 7, 2015 at 22:24 #49138marinushendrikParticipantHi sharmstr,
Thank you for helping me. I succesfully added the function to the theme,
but unfortunately this didn’t work. Actually I can’t manage to get the
breadcrumbs showing on the rest of the pages. So not only on the bbPress forum.March 7, 2015 at 22:24 #49139marinushendrikParticipantHi sharmstr,
Thank you for helping me. I succesfully added the function to the theme,
but unfortunately this didn’t work. Actually I can’t manage to get the
breadcrumbs showing on the rest of the pages. Only in the breadcrumbs
section. So not only on the bbPress forum.March 8, 2015 at 15:33 #49184sharmstrModeratorWhat arguments did you pass it?
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 ‘General questions’ is closed to new topics and replies.