• Hello,

    Thanks for your great plugin!
    Is there trick (a snippet?) so that replies could also be included within the weekly or daily digest or “New Topics Email” options?
    Right now, as stated in the plugin description, ‘New Topics Email – Send new topics as they arrive (but don’t send replies)’
    This option would be great!
    Best,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Boone Gorges

    (@boonebgorges)

    Try this:

    
    add_filter(
      'ass_this_activity_is_important',
      function( $is_important, $activity_type ) {
        if ( 'bbp_reply_create' === $activity_type ) {
          $is_important = true;
        }
    
        return $is_important;
      },
      10,
      2
    );
    
    Thread Starter larnoult

    (@larnoult)

    Thanks @boonebgorges for your suggestion!
    I added the snippet to the functions.php of my child theme, but without success.
    Replies are still not sent.
    I enabled define( 'BPGES_DEBUG', true ); in wp-config.php, and restested. Nothing shows up in the bpges.log
    Any other idea?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Including replies? (feature request)’ is closed to new replies.