@limited I liked your WPmimic bbpress theme and would go back if there was a WP theme for it. Basically what I really want is for the blog styling to look just like the forum styling.
@limited I liked your WPmimic bbpress theme and would go back if there was a WP theme for it. Basically what I really want is for the blog styling to look just like the forum styling.
Fartlek, thank you but is not a problem of widgets. I’m using Twenty Ten I can manage my forum index without sidebar using a custom template but only for the parent page. Each sub-page is using the default template provided by twentyten with his sidebar.
when i activation bbvido everything is normal
but it doesn’t work
if i select adminpage
them show this page
Page not found
There is no administration page at the requested address. Please check the address you entered and try again.
bbpress version is 1.0.3
Hallo, I’d like use a custum page template without sidebar, but BB Press always uses the default one for each sub-pages, how should I do? Thanks in advance.
You can not edit the profile (in bbPress 2 beta 1 and beta 2). I get an error: “Password can not be empty”, despite the fact that it does not change the password…
Even as I give a good password, the same message.
^ Is there a “report spam” function in bbPress?
^ Is there a “report spam” function in bbPress?
@kai920 – I’m using the bbPress plugin, directly from WordPress. Anyway, guess the plugin is only a integration interface and not the Forum itself. I was not sure where the forum should be installed. Inside the wordpress directory or outside ? It was not a question about the plugin, but the forum.
I just did a fresh install (1st time) of bbpress into my WP installation. When I add a forum it creates it but it doesn’t appear in my list.
At the top of the forums page in wp-admin it states:
Forums
ALL (2) Published (2)
No Forums Found
It states they are there but I have no way to edit them? Same thing is happening to Topics. bbpress 2.0 beta 2b
hello ,
thank you for your work
i need a new option, wich is new user post’s post validation (for 2week, or 1month max) , the iam is ti prevent my forum forum spam…
thank you in advance
It would take a small plugin to piggy-back on top of bbPress. It would hook into the ‘bbp_has_replies_query’ filter, and switch the ‘order’ argument from ‘ASC’ to ‘DESC’.
Or, you can drop something like this in your functions.php file. (Note: Not tested, so this code might not actually work.) 
function bbp_reverse_reply_order( $query = array() ) {
// Bail if no query
if ( empty( $query ) ) return;
// Change the order
$query = 'DESC';
// Return the adjusted query
return $query;
}
add_filter( 'bbp_has_replies_query', 'bbp_reverse_reply_order' );
It works in some funny ways. Because core bbPress development has its own Trac and website, we only use WP extend for deploying new versions. The beta’s themselves are built from the development branch.
@Chrisdfr – if you are using the bbPress plugin (i.e. NOT the standalone), I would just download it directly from the WordPress backend by going to mysite.com/wordpress/wp-admin. Then Plugins > Add New > Search for ‘bbPress’ and Install
I have Bpress intergrated with wordpress. Everytime A new user joins the site the user is added to the forum but there user role is unaasigned. If I go into the bbpress admin and then wordpress intergration and just save the user settings, not change them just save them it updates the new users. Any ideas?
Thanks for the tip. I’m talking with my developer now, and it seems we’ll go for making a plugin.
A piggy-back plugin could be created, to monitor the blog post entry, check which category it’s going into, and then at the same time create the topic. It would need some kind of interface to map blog categories to forums, and you’d need to figure out how to handle edits, etc…
An easier solution, might be to use your blog posts AS the forums, and attach the topics directly to them instead. That should be possible too, although I haven’t tested it extensively.
May I ask a simple question ?
I install my wordress here:
mysite.com/wordpress/
To help to the bbpress plugin in wordpress to work. I need to install my bbpress forum here ? :
mysite.com/bbpress/
Or in a new folder here ? :
mysite.com/wordpress/bbpress/
Last, just to be sure:
First, WordPress install
Second, BBpress install
Third, bbpress wordpress plugin install and activation
Right ?
Thank you
Chris.
Will do – thank you for the masterful quick response (and a working solution right off the bat 
My only other question in terms of bbPress is how to set it up so that new posts in particular categories are automatically added as new topics in respective parts of the forum.. but that’s not at all related to my original issue, so I’m breaking the thread here (feel free to point me in the right direction though
Afraid I won’t have much time to test this in the coming days. If someone wants to help collaborate on that one, have at it.
@BaraBajen – What version of bbPress are you using?
Score. 
Keep in touch and definitely report back anything else you find.