Hello Dan,
I ended up using the asyncronous-bbpress-subscriptions https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/ plugin
I realize this is an old thread, but we just installed Mandrill using the wpMandrill plugin and everything works great for us except BBPress. I’ve been in contact with Mandrill support and the first thing they suggested was actually just making no reply@… a valid email address. So we did that and that took care of the first issue.
But as for sending all emails in the Bcc, Mandrill still does not play nice with that and they really didn’t have any suggestions for me other than one, which I am copying as a screenshot below.

I tried installing Sudar’s plugin, but that did not work for me. I did install Stephen’s plugin to just disable wpMandrill for BBpress notifications and that worked. So that is my stop-gap solution at the moment.
Have I missed any new developments since this discussion started? Any new workarounds? I know that BBPress used to send all the reply emails using the “to” field. Has anyone considered making this an “option” in a future version — in other words, default to BCC but give admins the option to use TO if they’re using Mandrill?
Just struggling to find a solution. Any help would be appreciated.
Dan
This worked fine for me, changed Mybb php file as he suggested and all my users are back on bbpress
Hey ! First, forgive me for my english, i’m french user of Bbpress.
So, as you can see here
i have the same title for two different category. Even if the second has for parent the first. I put this code http://pastebin.com/QypF9bhA in loop-forum-php. I’d like to have different title and mostly the true title of my category.
I saw someone with the same problem, cause permission plugin. For information i have bbp-private-groups, buddypress, buddymenu.
I hope this is clear.
In advance, thank you for your help.
@gfxcon @adaman I can confirm it’s inside 2.6 (moderators per forum), you can already test the 2.6-alpha if you want that is very stable.
Pascal.
@robkk, @peter-hamilton,
Ahhh ‘herd’, I read ‘nerd’ as a start.
There is a showcase list on our codex: https://codex.bbpress.org/showcase/
EDIT: Check this list: https://bbpress.org/about/examples/
Then there is a top100 of some years ago: http://bbshowcase.org/forums/view/top100
Let me see to update our codex showcase list a bit…
Pascal.
@bjornwebdesign,
Your snippets are not that long, so that’s ok, just the number of snippets is maybe too high 🙂
My only remark is you’re based on a BuddyPress function and this is a bbPress forum. But still useful anyway!
Thanks,
Pascal.
WP 4.5.3 – BP 2.6 – bbP 2.6 alpha -2016
I want to remove the 2 bbp related options (topics & replies) from BP’s site wide activity filter dropdown.
I’m using this function, but it has no effect:
function remove_activity_filters( $bbp_buddypress = null ) {
if ( bp_is_active( 'activity' ) && bp_is_activity_component() ) {
// Remove forum filters in site wide activity streams
remove_action( 'bp_activity_filter_options', array( bbpress()->extend->buddypress->activity, 'activity_filter_options' ), 10 );
}
add_action( 'bbp_buddypress_loaded', 'remove_activity_filters' );
I dont get this logic, despite if it is only WP logic, not bbPress one.
Maybe I missunderstool it all. New Users (Roles = Subscriber, Participant) have access to add new Posts, and attach them to taxonomies.
Forum Users are forum USers, not Portal editors of Articles.
This code should be in bbPress core. When you install bbPress you accept that whole platform is changed to something else, and old WP rules are not valid anymore.
For all other things Users have buddyPress profile Pages.
function splen_remove_admin_bar() {
if( !is_super_admin() )
add_filter( 'show_admin_bar', '__return_false' );
}
add_action('wp', 'splen_remove_admin_bar');
//don't allow users to go wp-admin
add_action( 'init', 'blockusers_init' );
function blockusers_init() {
if ( is_admin() && ! current_user_can( 'administrator' ) &&
! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
wp_redirect( home_url() );
exit;
}
}
ok
On issue 1
The code goes on then functions file of your child theme
https://codex.bbpress.org/functions-files-and-child-themes-explained/
on issue 2, pending 2.6 coming out containing a fix (neither currently has any timescales)
the you can achieve this with my private groups plugin
https://wordpress.org/plugins/bbp-private-groups/
see the help page for how to set up
I am using bbpress 2.5.9 and WP 4.5.3 for a club website where the forums are only available to logged in Participants.
On vBulletin forums I’m a member of, there’s a Member List available to any logged in Member which shows user name, contact info, number of posts, etc. Is it possible to have something like that using bbPress? If so, how?
Thank you
To answer your 2nd question: “Also, is there a way to assign specific moderators to specific boards. Say a user is a moderator, but I don’t want them to moderate all boards, just specific boards. Is that possible?”
– They have a 9 year old ticket open to add this feature to bbPress.
https://bbpress.trac.wordpress.org/ticket/459
Looks like it is almost complete. The current plan is release with version 2.6 (current version is 2.59). With such an old ticket, history suggests is could get pushed back to later versions though.
What? No I am not leading the herd haha.
Im still learning like the rest of you guys. While I do have some themes in my backpocket and some yet to be released, there seems to be always soemthing I can improve on these things before I even think about releasing them. I am actually getting more free time soon, so maybe I can actually start giving support for these themes I release in full now.
The best forums that I have seen used bbPress are the developers of the Tameriel Foundry and HigherExistence forum for bbPress v2, and the wpmudev.org and ACF forum for bbPress v1.
All the developers that created each of those forums are leading the herd in my opinion, and you should check them out.
Robin there is a few functions already in bbPress that might be useful to use, and it might cut some of your code some.
http://hookr.io/plugins/bbpress/2.5.8/#index=u&search=bbp_user_profile
This should do what you want
//add profile link to forums
add_action ( 'bbp_template_before_single_forum', 'rew_profile_link' ) ;
add_action ( 'bbp_template_before_forums_index', 'rew_profile_link' ) ;
function rew_profile_link () {
if (!is_user_logged_in())
return ;
$current_user = wp_get_current_user();
$user=$current_user->user_nicename ;
$user_slug = get_option( '_bbp_user_slug' ) ;
if (get_option( '_bbp_include_root' ) == true ) {
$forum_slug = get_option( '_bbp_root_slug' ) ;
$slug = $forum_slug.'/'.$user_slug.'/' ;
}
else {
$slug=$user_slug . '/' ;
}
$edit_profile = __('Edit Profile', 'bbp-style-pack') ;
//get url
$url = get_site_url();
$profilelink = '<a href="'. $url .'/' .$slug. $user . '/edit">'.$edit_profile.'</a>';
echo '<div style="text-align: center;">'.$profilelink ;
}
add it to your functions file
https://codex.bbpress.org/functions-files-and-child-themes-explained/
You will need to change a template, so if you can edit a file and know FTP then you can amend this
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-topic.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-topic.phpbbPress will now use this template instead of the original and you can amend this.
Now go to line 68, which says
<span class="bbp-topic-started-in"><?php printf( __( 'in: <a href="%1$s">%2$s</a>', 'bbpress' ), bbp_get_forum_permalink( bbp_get_topic_forum_id() ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></span>
and delete this and save the file
I don’t think there is a character limit when you post a reply or topic with more than 300 characters.
Check to see if it could be some spam plugin with a feature for this, or a custom theme feature by doing the listed plugin and theme troubleshooting.
https://codex.bbpress.org/getting-started/troubleshooting/
Hey guys! I’m sure this is a quick php edit or something, but it seems when creating a new thread or replying to one on my bbpress forums, if the post contains over about 300 characters, the entire post gets eaten…and sort of becomes this phantom post. It’s really disheartening as you can imagine and I’ve literally scoured my WP files looking for a way to change this limit. Any help would be greatly appreciated!
I’m using the 2.5.9 version of bbPress plugin in the latest version of WordPress and would like to remove this tab, but I can not. Can someone help me?
Here’s a print for better understanding: http://www.siteconcursos.com/wp-content/uploads/2016/06/Capturar.jpg
You weren’t very specific but this plugins should do it.
Go to the users list by the user you want to see how many posts they made a certain month by clicking the view stats link by their avatar, then filter by month to see how much they posted.
https://github.com/mharis/bbpress-user-stats
@stevecl
The issue also does happen in TwentyFifteen.
The issue is because in the bbPress default theme package, there is a template called content-search.php. In some newer themes there is also a template of the same name. And since the bbPress templates don’t necessarily need to be in a bbPress folder, the bbPress plugin is choosing the template from your theme before the template that is actually in bbPress.
Copy content-search.php from the bbPress plugin templates and place it in a child theme in a folder called bbpress. This fixed the issue you are getting in a free version of your currently active theme.
https://codex.bbpress.org/themes/theme-compatibility/
Also just created a trac ticket for this issue.
https://bbpress.trac.wordpress.org/ticket/2966
Folks, I’m new to bbPress, but I’m setting it up for a client’s membership site. They want a general forum for their members, where any member can post at any time (in other words, no moderation before posting).
Then they want a more-restrictive forum, where members can create drafts which must be approved before they are published.
I’ve tested bbP with bbPress Moderation by Ian Stanley, and it works in general — but requiring all posts to be moderated. I’m currently working with FV bbPress Tweaks, which appears to be brand new, but also seems to work and has a few more features.
However, I’m not seeing anything that allows settings for individual forums. Seems like the sort of thing people would want.
This all-or-nothing approach seems baffling to me, so I’m hoping that I’ve missed something obvious. Any relief here?
I can’t immediately see the issue.
If you have tried with just twentyfifteen and bbpress, then not sure how to progress next.
@robkk – any ideas?
@rda5009
Thanks for sharing that you found a plugin that does this kind feature. I am sure it will be really useful to a ton of other users that use Group Forums using bbPress and BuddyPress.
@scootsafe
Since you enabled threaded replies, which has an issue with some mobile responsive styles because how they are by default. Try this custom CSS, or disable threaded replies and see if your forums have a better layout, though I am not sure how the mycred badges will react.
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
display: block !important;
}