BuddyDev

Search

Replies

  • Participant
    Level: Initiated
    Posts: 5
    Mary Pearson on #7309

    Thank you again Brajesh.

  • Participant
    Level: Initiated
    Posts: 5
    Mary Pearson on #1379

    Fabulous! Thank you so much!!!!

  • Participant
    Level: Initiated
    Posts: 5
    Mary Pearson on #1377

    Wonderful! Thank you so much Brajesh! Now, do you think you could do the same thing for your WP Users Login plugin?

  • Participant
    Level: Initiated
    Posts: 5
    Mary Pearson on #1371

    I tried as a subscriber four times, and the other users are also main accounts that I use, however I did check spam and they are not there.

  • Participant
    Level: Initiated
    Posts: 5
    Mary Pearson on #1369

    Thank you. I upgraded to 1.0.1 and added the code to functions.php.

    I (Admin) am being notified as before, but I added two other emails that are mine to test the Mods and they are not receiving.

    This is the code I used:

    function bpp_notify_admin_extra_email_address( $emails, $context = null ) {
    //$context will be ‘topic’/’reply’ if you need to do extra filtering

    $new_emails = array(
    ‘mary@ChristianGays.com’,
    ‘mary@winningwebsitecreations.com’,
    //keep adding
    );

    return array_merge( $emails, $new_emails );
    }
    add_filter( ‘bbp_notify_admin_email_addresses’, ‘bpp_notify_admin_extra_email_address’, 10, 2 );