We’re using bbPress and BuddyPress to power the jMonkeyEngine community site:
http://hub.jmonkeyengine.org/
Using the excellent Firmasite as our parent theme, our child theme is a modified version of the ACME Dashboard. It is indeed marketed as an admin theme, but we found it to be nicely suited for a clean discussion-centric layout.
We’re not taking great advantage of BuddyPress at the moment, in great part due to a pending bbPress/BuddyPress bug that makes it difficult for us to repurpose our groups. In the future we want to use vanilla groups for task-centric “workgroups”, and we’ve long been entertaining the idea of making a customized version of groups to create a plugin front-end for our SDK.
bbPress on the other hand is constantly being pushed to its limits, and we’re very happy with it. We’re using the Support Topic plugin to great effect, along with our custom made Quotes plugin, among many others.
Huge thanks to the developers and contributors of bbPress and BuddyPress for making two outstanding pieces of free software.
p.s. If any budding WordPress developers out there would like an opportunity to get some experience contributing to an open source project, you’re very welcome to get in touch.
How can users start forum topics? Thanks.
Rita
I keep receiving the above-referenced error. I’m using wordpress 3.6 and 2.4 bbpress. I don’t have a multisite network setup. Help! Thank you.
Rita
Hi there
I have bbPress (along with BuddyPress) on two, fundamentally, identical websites.
However, on www.wolflan.com, I have no issues, but on clan.wolflan.com I have a couple of weird ones.
They are both even using themes from the same author.
On wolflan.com, I was able to use
function custom_bbp_list_forums() {
$args['separator'] = '<br />';
return $args;
}
add_filter('bbp_before_list_forums_parse_args', 'custom_bbp_list_forums' );
in my themes functions.php, and therefore get the sub-forums on their own line. Additionally, I was able to add individual forums to the site navigation menu (Appearance/Menus).
On clan.wolflan.com I was able to get the sub-forums on their own line, up until I upgraded to 2.4. At which point, my private forums moved to the bottom and the code above stopped putting the sub-forums on their own line. Today, I decided that I would like to have forums on the navigation and noticed that I have no option for this.
Both sites are running an identical plugin list, they are both on the latest versions of all plugins and are also running WP3.6.1 as of this morning.
Would anyone have any ideas?
I have linked to images that show the issue:
wolflan.com
Fully working, modded functions.php
fullworkingfunctionsmod.png
Fully working, wordpress menu editor
fullworkingmenueditor.png
clan.wolflan.com
Not working, modded functions.php
nonworkingfunctionsmod.png
Not working, wordpress menu editor
nonworkingmenueditor.png
Would anyone have any ideas as to what I can do to solve these two issues?
Many thanks
Dave
Hello,
I tried for several days to import my forum PHPBB 3.0.11 (the latest version) to bbPress, the latest version too, but the problem is that I end up with countless duplicate for each element of the forum.
How to remedy this?
Sincerely,
Hello,
after exactly 10 years and over 500.000 posts with our board deppheads.com running with Woltlab Burning Board (right now version 3.1.8), social networks have sort of won – instead of 150 new posts the day we have now maximum 5 posts. WBB4 will be coming out soon, so this is the right time to sell my WBB license and move it all to my site johnny-depp.org, powered by WordPress. This is where I seek help.
I already deleted inactive members, so that we now have “just” over 300, but I don’t want to delete all the written things like movie reviews and serious discussion, as this is still the home of many. So there are 500.000 posts and nearly 10.000 topics to be imported.
I edited the example.php and so far it worked with importing members and forums (just on a test WordPress installation for now).
However, there are some problems/questions I’ve come up with and I’m almost sure, there will be more following.
1. there is, equally to phpBB, the problem, that there are topics and posts, and the first post of the topic has to become “topic content” of WBB.
Here I used
// Topic content.
// Note: We join the posts table because topics do not have content.
$this->field_map[] = array(
'from_tablename' => 'wbb1_1_post',
'from_fieldname' => 'message',
'join_tablename' => 'topics',
'join_type' => 'INNER',
'join_expression' => 'USING (threadID) WHERE wbb1_1_post.postID = wbb1_1_thread.firstPostID',
'to_type' => 'topic',
'to_fieldname' => 'post_content',
'callback_method' => 'callback_html'
);
Unfortunately, I get the error, that wbb1_1_post.message does not exist:
WordPress database error: [Unknown column 'wbb1_1_post.message' in 'field list']
SELECT convert(wbb1_1_thread.threadID USING "utf8") AS threadID,convert(wbb1_1_thread.replies USING "utf8") AS replies,convert(wbb1_1_thread.boardID USING "utf8") AS boardID,convert(wbb1_1_thread.userID USING "utf8") AS userID,convert(wbb1_1_post.message USING "utf8") AS message,convert(wbb1_1_thread.topic USING "utf8") AS topic,convert(wbb1_1_thread.time USING "utf8") AS time,convert(wbb1_1_thread.lastPostTime USING "utf8") AS lastPostTime FROM wbb1_1_thread AS wbb1_1_thread LIMIT 0, 100
But it does!
I attached both, my wbb3.php import script and the database structure of the most important tables, here you go:
http://deppheads.com/uploads/wbb.txt
http://deppheads.com/uploads/database_structure.txt
2. I hope/guess, this is also the reason that all topics (once I remove that passage that produces an error) are started either by Anonymous or by ME (although I haven’t done it)?
3. some users are twice now (like myself..who have been admins of wordpress and users of the forum). Can I simply merge them with
UPDATE wp_posts SET post_author = ‘1’ WHERE post_author = ‘2’; and it will count for the forum, too?
4. the passwords – in WBB they are hashed by this:
$passwort = sha1($row->salt.sha1($row->salt.sha1($_POST[‘passwort’])));
so what do I write at the end of wbb3.php
public function authenticate_pass( $password, $serialized_pass ) {
$pass_array = unserialize( $serialized_pass );
return ( $pass_array[‘hash’] == md5( md5( $password ). $pass_array[‘salt’] ) );
}
or is this impossible and the users have to get the new password by mail?
5. the imported users have no “Forum Role”. Is is “normal”? Is there any chance to automatically give them the forum role “Participant”?
6. do I have to keep the wbb3.php “forever” because of the passwords or can I delete it one day, even if not all members have com back yet?
7. until now we have everything like private messages, profiles, friends and especially user groups (Moderators, crew members) with hidden forums. Do I see correct, that I can install both, import bbpress and afterwards attach for example our “Mods Only” to the group “Moderators” as group forum?
8. I see that every user gets a new User ID – old IDs are saved in table _bbp_converter_translator – will that table be kept? Maybe by this I have a chance to later import – somehow – private messages for buddy press!?
Alone if my first point is solved, I’d be thankful.
Kind regards, inspirationally.
Hi all, how does one change the default Forum for posting a new topic on the /forums page? I’d like it to be a group I created called ‘General Discussion’. I had this working fine before migrating from BuddyPress forums to bbPress.
See http://destinationli.org/forums. The default is ‘Group Forums’, and the problem with that is that when one clicks on ‘Group Forums’ within the newly posted topic, it displays all the other groups first, with the relevant topic at the very bottom.
Ideally, I’d like to delete ‘Group Forums’ as an option, unless I’m missing something.
I am having a few weird problems with my installation.
First, when logged in as just anything but administrator, the page looks like this:

When not logged in, or logged in as adminstrator, it looks the way it should:

Also note how at the top it says “This forum is empty” but you can clearly see that there is a topic in it.
Thoughts?
Hello Forums,
i have this issue – can anyone help please?
i try to deaktivate all plugins – bit i cant fix this – anyone a idea?
http://somesu.de/forum/
Thanks!
Hello,
I have my registration and login pages on the frontend of my website using the shortcodes
and .
However after someone registers they get redirect to the back /wp-login. How can I make them go to my frontend /login?
After logging in I’d like them to be redirected to homepage. Is this possible?
Thanks