No emails are sent (async problem)
-
No emails are sent from BBPress when the plugin is active.
After changing the following actions, it works.
from:add_action( 'wp_async_bbp_new_topic', array( $this, 'notify_forum_subscribers' ), 10, 4 ); add_action( 'wp_async_bbp_new_reply', array( $this, 'notify_topic_subscribers' ), 10, 5 );
to:
add_action( 'bbp_new_topic', array( $this, 'notify_forum_subscribers' ), 10, 4 ); add_action( 'bbp_new_reply', array( $this, 'notify_topic_subscribers' ), 10, 5 );
Any idea why wp_async doesn’t work? Using BBPress 2.5.13 & BuddyPress 2.9.1.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘No emails are sent (async problem)’ is closed to new replies.