Unable to access bbPress forum pages though the content still there
Unable to access bbPress forum pages though the content still there
Unable to access bbPress forum pages though the content still there
Show the parent forum in a topic with bbPress [closed]
bbPress is not displaying video player
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
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
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
I’m looking for the same. I just found this, not tried yet but seems to be working: bbPressModeration
http://bbpress.org/forums/topic/social-engine-3-export-forums/#post-135964 This post has helped me greatly. Thanks Steven.
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/
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.