this message appears if users post topics ir replies with words that are in the wordpress blacklist
the list is in dashboard>settings>discussion
this list will catch fragments so ‘class’ will be blacklisted if you have ‘ass’ in the blacklist
I wonder If I can set an email address for bbpress that is different from my WordPress admin email address? Ideally I should be able to set a different email addresses per forum (to send notifications to the moderators and/or the keymasters).
Does anyone know of a plugin or some code to make that possible?
I finally gave up and spent the ungodly amount of hours repairing and bringing the phpbb board back to life and went with that. This was a nice hope for a good change though as WordPress is so much easier to work with stability wise.
ok, can’t help you further, suggest you post on
https://wordpress.slack.com/messages/bbpress/
and see if one of the devs can help
go to
bbPress
and select Advanced view on the right hand side
and at the bottom of the page you will find ‘previous versions’
you can select and download from there
Can anyone point me the place where i can find the unit test for specific bbpress version?
In the trac repo, only the trunk/beta/rc have the unit test folder. But on the standard release, it’s just the production version.
Maybe there’s already a way to do it in trac’s interface but I couldn’t figure out.
For example, I want to get the unit test for version 2.5.12 to run some compatibility test on my plugin. How can I get that?
https://bbpress.trac.wordpress.org/browser/tags
Thanks much 🙂
Bumping this as the sentiment in the original post about the lack of progress with maintaining bbbpress as an active project seems to be even more relevant now than when this topic was made.
While somehow wordpress.org indicates the bbpress plugin was last updated a week ago, the current version 2.5.14 was released in September 2017.
The next release as far as I can tell is 2.60, for which the latest development version, rc5, was first put out for feedback 13 months ago.
it is not reasonable to call this project under active development.
if you actually posted ‘After clicking on register button wp shows wp-login.php page but without login form. Only -1 in upper left corner.’ on a wordpress forum, why would they even mention bbpress? Youy must have asked a question mentioning bbpress.
I have looked at the issue and it is a wordpress issue, but general advice
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
I post the same question on wordpress.org and they say: Ask on bbpress..
So, again, when I try to register on bbpress forum on my website after inserting the username and mail and pressing the Register button on https://karate-training.net/wp-login.php I see only -1 in upper left corner.
Did anyone have a similar problem?
Here is the example
https://karate-training.net/wp-login.php?action=register
bbpress juts uses wordpress registration so please post to the wordpress support forum
1. bbp style pack
3. in current bbpress
4. bbp style pack
bbp style pack
When u load wordpress function inside bbpress. U already integrate both design point and database point. You only need to add WP template tags inside bbpress template.and mostly use wp default functons.
@looimaster I’m just a bbpress user trying to put something back on the open software community
bbpress has https://bbpress.trac.wordpress.org/ as it’s code improvement tool
I found another way to add forums to the menu at DesignBombs which seems to do it. Instead of creating a page and embedding the short code in it, just used the forums to add to the menu. It does not initially have the top level page with 4 sub forums but that is OK.
I also think the many attempts to import, find an error, add the column, import, find an error, add the column…..etc, led to bbpress having a meltdown somewhere possibly as in WordPress, when you click on the forums link in the menu or the “All Forums” sub menu item, it leads to a ERROR 502 – BAD GATEWAY.
I tried re-installing the plugin but the forums listing menu item is shot. I even upgraded to the current release candidate.
On a positive note, the current release candidate seems to be importing data….working on importing up to convert 50k+ topics right now. Even though the forum listing in admin screen is screwed, this is at least a good test to see what happens on the import I guess…
I finally had enough with phpbb and installed a wordpress JUST for my forums. I installed bbpress in it and have been trying to import the forums over. First it kept erroring saying missing table fields or whatever, so I kept adding the table fields to the areas of the phpbb’s sql DB where it was looking for them..then it got stuck with the “Starting Conversion” and a spinning wheel. Everytime I had chosen “Start Over” I would get the “Specified key was too long; max key length is 1000 bytes” error. Just not my day I guess. 🙁
I had a few questions…
1) Does the importer not support 3.2.0? I figured it does by now since it states phpBB 3.x
2) Can you make the main index page of the WordPress site the forums? This way the wordpress is for nothing other than the forums? (once things do get working…)
3) Am I missing anything lol…I’m rackin my mind on this and it’s driving me nuts 🙂
I can’t wait to be in a better environment for the forums…
Hello
I am trying to use bbPress for a forum and when I use the short code to generate the index it does not show correctly. It does show a link (http://localhost/my-app/wordpress/forums/forum/wvv-forums/)for the index and if I click on the link it shows a better formatted list.
I have 4 sub-forums and instead of 1 per line, it shows 2 per line. Using Twenty Seventeen and have previewed with sixteen and fifteen themes, too with no effect.
What do I need to do to fix this?
Thanks in advance.
I think the edit button appears for anyone with edit permission under wordpress – what wordpress level are they?
Hello, i have install the bbPress on my wordpress site … i have create the forum sections, but topics don’t show up… somebody knows the solution? I have tried to change the users role, but is not possibile …
http://www.exlot.it/wp/forums/
Try this – or much easier just add my style pack plugin to your site which has this fix built in, and let me know if it fixes
bbp style pack
//filter to correctly return last active ID for sub forums
//note : a parent forum or category can get the wrong last active ID if a topic in a sub forum is marked as spam or deleted. This filter ignores the parent and works out the correct sub forum
//don't add if pg filter exists as this will have done it already
if (!function_exists ('private_groups_get_permitted_subforums')) {
add_filter ('bbp_get_forum_last_active_id' , 'rew_get_forum_last_active_id', 10 , 2 ) ;
}
function rew_get_forum_last_active_id ($active_id, $forum_id) {
$sub_forums = bbp_forum_get_subforums($forum_id) ;
if ( !empty( $sub_forums ) ) {
$active_id = 0;
$show = array();
//find the latest permissible
foreach ( $sub_forums as $sub_forum ) {
$sub_forum_id = $sub_forum->ID ;
$active_id = get_post_meta( $sub_forum_id , '_bbp_last_active_id', true );
$last_active = get_post_meta( $sub_forum_id, '_bbp_last_active_time', true );
if ( empty( $active_id ) ) { // not replies, maybe topics ?
$active_id = bbp_get_forum_last_topic_id( $sub_forum_id );
if ( !empty( $active_id ) ) {
$last_active = bbp_get_topic_last_active_time( $active_id );
}
}
if ( !empty( $active_id ) ) {
$curdate = strtotime($last_active);
$show[$curdate] = $active_id ;
}
}
//then add the forum itself in case it has the latest
$active_id = get_post_meta( $forum_id , '_bbp_last_active_id', true );
$last_active = get_post_meta( $sub_forum_id, '_bbp_last_active_time', true );
if ( empty( $active_id ) ) { // not replies, maybe topics ?
$active_id = bbp_get_forum_last_topic_id( $forum_id );
if ( !empty( $active_id ) ) {
$last_active = bbp_get_topic_last_active_time( $active_id );
}
}
if ( !empty( $active_id ) ) {
$curdate = strtotime($last_active);
$show[$curdate] = $active_id ;
}
$mostRecent= 0;
foreach($show as $date=>$value){
if ($date > $mostRecent) {
$mostRecent = $date;
}
}
if ($mostRecent != 0) {
$active_id = $show[$mostRecent] ;
} else {
$active_id = 0;
}
}
return apply_filters( 'rew_get_forum_last_active_id', $active_id, $forum_id );
}
no special bbpress themes, most themes work with bbpress, but you may want to use this to style the forums t match your theme and improve their look.
bbp style pack
I’ve been using bbPress and BuddyPress since long and am aware that if a user creates a topic in any forum, that also gets listed in user profile -> Forums tab.
Here is what exactly I’ve done:
When I create a private group and attach a forum with it. And a non-admin member becomes a member of that private group. Now that member creates a topic in that private forum, that topic does show globally on the /forums page. But when that user checks his profile for the topics he created, there no topic is shown. Which means the topics that show up globally, doesn’t show on the profile page.
For the information, I’m using the following versions of the plugins and theme:
1. bbPress – 2.5.14
2. BuddyPress – 3.2.0
3. Twenty Sixteen – 1.5
4. WordPress – 4.9.8
Please help me with this issue. Also, let me know if some guys have come across such a situation.
Thanks in advance!
Hello. It shows that this plugin is “Untested with your version of WordPress” and hasn’t been updated in over a year? I don’t want to get another plugin that doesn’t work so could you tell me if there are any plans to update to the latest WP Version? It’s not like Version 4.9.8 just came out. Thanks in advance!
Thank you. I was introduced to WordPress a few weeks ago so everything is new to me. If there is an alternate bbpress support plugin other than these two you recommended please let me know.
Home