• 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)
  • Plugin Author Brandon Allen

    (@thebrandonallen)

    Hi @rfirevtre,

    You are definitely not the first to have this problem, and I’ve been suspecting it was related to a sync. Truth is, I don’t know what it is. Since you seem to have some sort of understanding of code, maybe we can figure it out together ;)?

    My first question would be what plugins are you running? My first guess is something is interfering with requests to admin-ajax.php which is used to make async work. This would likely mean security plugins, but it really could be any plugin that makes Ajax requests.

Viewing 1 replies (of 1 total)
  • The topic ‘No emails are sent (async problem)’ is closed to new replies.