Just to make sure I would delete the bbPress plugin (you won’t lose any of the data that is there) directory and then reinstall it.
Sure, I used zBench
See how I modified it here: http://all4xs.net
I have cleared all the errors by disabling all plugins but BBPress. Nothing changed.
In my theme functions.php folder (called Boooster) I added the line
add_theme_support( ‘bbpress’ );
and now my bbpress posts appear but as regular blog posts and with no styles or bbpress layout. I’m getting closer … I think. Any more insight?
http://f6.com.au/forum/
Dosch, could you please share theme name? Im currently using WP Mimic, but it does not work with bbpress 2.x, so Im still running on 1.x version. 
I did not sucseeded searching alternative.
Hi everybody
I tried to separate title of subforums and these counters.
Unfortunatly bbp_list_forums() doesn’t take an arg like “show_title” to give the possibility to set in false.
So i fork the bbpress plugin to add this arg (i know it’s wrong).
Anyone know a troubleshooting smarter ?
Got it working!!
.bbPress #header {
background-image: url(images/mspace-header.png)!important;
background-repeat: no-repeat;
}
THANK YOU – YOU’RE a SUPERSTAR!!
It might be easier to use some of the bbPress body classes in addition to what you are using now.
For example you might be using a custom body class called ‘my-header-image’.
So if you wanted to use that on your bbpress portion of the site you would just add the bbpress body class to your css, such as
.my-header-image,
.bbPress {
background: url(myimage.jpg);
}
There are other body classes available from bbPress, but you get the picture
Unfortunately nothing changed, its probably “operator error” since I am pretty new to genesis and bbpress. Maybe I didnt explain myself properly either. 
Some of my site’s pages use a custom body class where I specify an alternate header. It seems like all the pages I set up in the bbpress forum and topic areas are missing the Genesis Layout Settings Metaboxes where I can specify the custom body class….
I dont know if I am making this more difficult than it is?? It seems all the deeper bbpress pages (except for the page showing the actual forum) are reverting to the default header and I would like to customize it to show the alternate one.
Thoughts??
This is a total guess and not tested, but you should be able to put something like this in your theme’s functions.php file
add_action( 'bbp_init', 'do_custom_body_classes' );
function do_custom_body_classes() {
add_filter( 'body_class', 'genesis_custom_body_class', 15 );
}
@johnny-rocket – The public/private/hidden forum bug might be the crux of the issue others were running into. I’ll be putting out a point release of bbPress today to address it.
You’ll want to clean up all those errors before most things will work normally. Doesn’t look like the issue is with bbPress anywhere (yet), according to your dump above.
For my website, running on Genesis framework using Minimum theme, I am using two diff custom body classes to define the header images of certain pages. The interior forum pages are only showing the default home page site header and I do not see where I can add my custom body class to those pages. Does anyone have a suggestion for how/where I can define/change the header images of the forum pages?? I would really appreciate it!
Website http://www.nurturematernity.com
A better way would be to edit it in the template or use the bbp_get_reply_author_avatar filter in place.
What you did will work fine, however keep in mind that when the next version of bbP comes out you will lose the edits you made to the plugin.
Already found it;
It’s in the plugins/bbpress/bbp-includes/bbp-reply-template.php
change the ‘size’ => 80, to 40
You’ll want something like this. And it should go in your theme’s functions file.
add_action( 'bbp_ready', 'ja_login_detect' );
function ja_login_detect() {
include_once "/dap/dap-config.php";
if ( !Dap_Session::isLoggedIn() )
header( "Location: /dap/login.php" )
}
How do I change the avatar size in bbpress 2.0? It’s currently 80×80 and I want to change it to 60×60.
@jaredatch – no guest posting, just want a give the users a way to police the forums and alert me of abusive posts or other terms violations.
Thanks @daveshine. I’ll take a look at that if SPAM starts to get out of control. Right now, it looks like Akismet is handling things well enough.
wp-reportpost looks like it may do the trick. Thanks for the feedback.
We have tried working on this some more, but still not working. Would bbpress.php be the right script for these changes?
<?php
include_once “/home/@#$$$/public_html/dap/dap-config.php”;
//the problem is get_post_type comes up empty..
if((get_post_type() == ‘forum’) || (get_post_type() == ‘topic’) OR (get_post_type() == ‘reply’))
{
if( !Dap_Session::isLoggedIn() ) {
header(“Location: /dap/login.php”);
exit;
}
}
Our problem is that get_post_type() comes up empty when used in bbpress.php.
So maybe the whole check needs to go else where. I am not sure where.
Also i don’t see a bb-config.php in our folders? Should this file exist?
I’m a professor & I’m planning to use bbPress as my a grad school class hub. I have bbPress working as I want, except I need 2 types of forums. One is for Required Discussions (assignments) and the other is for Open Discussions (non-required). Anyone can start a discussion in the Open Discussions Forum, but only I can start new discussions in the Required Discussions Forum.
I converted my SNS from Ning. So far so good except for this one issue about controlling who can start discussions in these 2 forums.
Is there a way to control who can start discussions in specific forums?
THANKS for any info!
carmin
It’s perfect. The problem is now resolved.
Many thanks.
@JJJ
I read in this thread that you mentioned it was possible to give users the ability to add iframes to a post if you have the correct ‘simple’ WP plugin.
I am trying to allow people to add their iframes from soundcloud.com into a post so I need to give them that ability.
Can you tell me what plugin will allow this to happen?
Thank!
Hi guys,
We made a premium bbPress spam killer Plugin. It kills spam dead!
The concept is loosely based around our own ideas and automatting some of Anointed’s ideas.
The Spam Killer Plugin saves us a lot of time and money. Since the spam problem has cost us such a lot of time and money;
a) removing spam daily
b) testing many plugins that did not work
c) and finally building a new Plugin which took many many hours that fixes our problem
… we have decided to make it a premium plugin for sale on our site.
http://getshopped.org/premium-upgrades/premium-plugin/bbpress-spam-killer/
Best,
Dan
micropat: The new version works splendidly — the button appears on posts and pages but not on the forum index.
Rastarr: I’m letting you know that I’ve found something that actually works with bbPress: Lockerz Share.
*******************************************
CLOSE ON: GRABINARK. He wipes a tear from his cheek and sniffs.
GRABINARK
(hoarsely)
Thanks, micropat. You …. you made it work.
MICROPAT’S POV:
GRABINARK bows and slowly walks backwards out of the room.
FADE OUT
THE END
Sorry for the double post….
Or should we just use !important in our master css files?