At the moment my forum homepage displays a list of the available forums but I’d like to be able to display the topics within each forum llike they show on the bbPress website under section 1 on this page. Is this possible using bbPress with Enfold?
Hey Rustybucket,
Can you please post .htaccess logins here privately so we can check your forum?
Best regards,
Yigit
Sorry, posted now
Hi!
Please try adding following code to Functions.php file in Appearance > Editor
function recent_bbpress_topics() { {
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'posts_per_page' => 5 ) ) )
bbp_get_template_part( 'bbpress/loop', 'topics' );
add_action('bbp_theme_after_forum_title','recent_bbpress_topics');
Best regards,
Yigit