How can I locate the single buddypress forum post template? [closed]

Even if I’m also not quite sure if this question is related to bbPress or BuddyPress, locating (plugin-) template files might always be the same: An easy approach might be to call the body_class() in a file which is definitely active (like header.php). The output will look something like this: class=”forum-archive bbpress archive post-type-archive post-type-archive-forum … Read more

How to enable truly anonymous posting in bbPress forums? [closed]

When we post an empty anonymous reply, we get the following errors: The part of BBPress that’s responsible for handling this, is the bbp_new_reply_handler() function, in the file /bbpress/includes/replies/functions.php. It contains these lines that are of interest to us: // User is anonymous if ( bbp_is_anonymous() ) { // Filter anonymous data $anonymous_data = bbp_filter_anonymous_post_data(); … Read more

bbPress – select a topic reply as “answer”

I’ve been thinking about making something similar, and also found those plugins to be outdated. I did create a ‘Mark as sold’ feature for some classifieds I recently added to my site, and I think it will use similar methods. I haven’t started development on it yet, but here’s the idea I’ve been kicking around: … Read more

bbpress Not Showing: How to troubleshoot?

The “most” stripped-down theme I can think of that can run BBPress is just a single index.php file containing: <?php // get_header(); if ( have_posts() ) : while ( have_posts() ) : the_post(); the_content(); endwhile; else : _e( ‘Nothing!’ ); endif; // get_footer(); ?> So my guess is that your while loop is missing something … Read more