Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8956611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:49:34+00:00 2026-06-15T14:49:34+00:00

I have setup BuddyPress with a custom profile field that lists check boxes for

  • 0

I have setup BuddyPress with a custom profile field that lists check boxes for tags related to my site.

Is there a way to send automatic notifications to registered BuddyPress users based on their custom profile field selection whenever a new post goes up?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T14:49:35+00:00Added an answer on June 15, 2026 at 2:49 pm

    The save_post hook can help you out.

    http://codex.wordpress.org/Plugin_API/Action_Reference/save_post

    Something along the lines of:

    function send_bp_message( $post_id ) 
    {
      //verify post is not a revision
      if( wp_is_post_revision($post_id) )
      {
        return;
      }
    
      // get the user ids you want to notify
      global $bp, $wpdb;
    
      $custom_field_id = 1; // the profile field you want to check
      $custom_field_value = 'true'; // the value you're looking for
    
      $stmt = $wpdb->prepare("
        SELECT
          {$bp->profile->table_name_data}.user_id
        FROM
          {$bp->profile->table_name_data}
        LEFT JOIN
          {$bp->profile->table_name_fields} ON {$bp->profile->table_name_fields}.id = {$bp->profile->table_name_data}.field_id
        WHERE
          {$bp->profile->table_name_fields}.id = %d
        AND
          {$bp->profile->table_name_data}.value LIKE %s
      ", $custom_field_id, $custom_field_value);
    
      $recipient_ids = $wpdb->get_col($stmt); // array of matched user ids
    
      // send buddypress notification to matched user ids
      // (you could loop through $recipient_ids to send individual notifications)
      $msg_args = array(
        'sender_id' => 1, // 1 = admin
        'recipients' => $recipient_ids,
        'subject' => 'New post',
        'content' => 'A new post has been created...'
      );
      $thread_id = messages_new_message($message_args);        
    }
    add_action('save_post', 'send_bp_message');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have setup Custom Domain https://developers.google.com/appengine/docs/domain I have uploaded An SSL certificate and private
I have setup a basic test app that displays a view containing a label,
I have setup a settings bundle and can successfully pull data from that. I
I have setup a cronjob to remove a file that is being generated by
I have setup memcached (unix socket) for my django application. However it seems that
I have setup a table view that displays users albums from the device. I'm
I have setup a SharePoint site with forms authentication and My Sites. The users
I have setup spell checking through WinWord but I need to find a way
I have setup unity in my project and it is working for objects that
I have setup a div that is resizable: $(mydiv).resizable(); Now when you go to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.