-
Notifications
You must be signed in to change notification settings - Fork 33
Home
If you have the "Search Engine Visibility" option disabled under Settings > Reading in the WP admin dashboard, due to a quirk with bbPress, no forum activity will be recorded into the BuddyPress activity stream.
Since GES relies on the activity stream, your users will never receive any group forum posts by email.
To solve this, either re-enable "Search Engine Visibility" by unchecking the option under Settings > Reading in the WP admin dashboard.
Or, use the following code snippet in wp-content/plugins/bp-custom.php to force (fool) bbPress into thinking that search engine visibility is on:
add_filter( 'bbp_is_site_public', '__return_true' );
--
If you are using ALTERNATE_WP_CRON
in wp-config.php, digests in BP Group Email Subscription will not work properly due to a WordPress core bug.
You can patch WordPress temporarily until WordPress address the problem.
See: https://core.trac.wordpress.org/attachment/ticket/24160/24160.01.patch
Original bug report: https://wordpress.org/support/topic/digests-containing-empty-content-when-running-alternate_wp_cron
--
If your host imposes a limit on the number of emails you can send, you might want the ability to throttle or send emails in batches.
One user has confirmed that the Mail Queues plugin works for them.