Hi Jasper,
Thanks for reaching out.
The ‘Send Notifications’ option is actually for the back-end Send Notifications metabox. It does not control the front-end “Notify me of replies” checkbox. I always recommend using the free bbp-toolkit plugin to control that one.
Cheers,
Vinny
Thread Starter
Jasper
(@garyhamptonmcp)
Thanks for getting back. I just tried BBP-toolkit and it hasn’t been updated in a long time. I’m using Buddy Boss and get error msg “Sorry, you need to activate bbPress first.”. How be awesome for someone to sort this out. We are having a lot of users not noticing to tick the box then wonder why no one is replying…
Try adding this to your child theme’s functions.php:
add_filter( 'bbp_get_form_topic_subscribed', '__return_true', 10, 2 );
add_filter( 'bbp_get_form_forum_subscribed', '__return_true', 10, 2 );
Sorry, the code above is wrong. Use this one instead.
add_filter( 'bbp_get_form_topic_subscribed', function(){ return checked(true, true, false); }, 10, 2 );
add_filter( 'bbp_get_form_forum_subscribed', function(){ return checked(true, true, false); }, 10, 2 );
Thread Starter
Jasper
(@garyhamptonmcp)
Thank you so much, your a legend! Works perfectly 🙂
-
This reply was modified 3 years, 4 months ago by
Jasper.