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

bbPress plugin – How do I add a forum description?

Are you using the standalone, or the plugin? I’m not sure if there is a difference honestly, I’ve never touched the standalone. Anyway, I have the plugin going From my admin panel I have the option of adding/editing forums/topics/replies Clicking on Add New for forum brings up a standard WP post screen The title is … Read more

How to remove br and p tags from bbPress

Take a look in here, not sure if this will accomplish what you’re looking to do (the existing posts) but it should stem the tide going forward: http://codex.wordpress.org/Function_Reference/wpautop You’re looking for something like this I think: remove_filter( ‘the_content’, ‘wpautop’ ); This plugin also does something like that, though I’ve never used it: http://wordpress.org/plugins/wpautop-control/

bbPress – Post count increases after every edit

This is not related to bbPress 2.4, bbPress 2.x at this stage does not include this functionality out of the box. I expect you are using an additional plugin to add the ‘Post count: 1’ functionality to bbPress and your issues relate to that plugin.