skip to Main Content

WordPress Code Snippets


How to Redirect After Profile Update in BuddyPress

Redirect users to a custom page after profile updates in BuddyPress.

// Redirect users to a specific page after they update their profile
function redirect_after_profile_update() {
    if (bp_is_user() && isset($_POST['submit'])) {
        wp_redirect(home_url('/thank-you'));
        exit;
    }
}
add_action('bp_profile_field_item_saved', 'redirect_after_profile_update');


I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top