Got this work to redirect to wp profile but i want user to redirect to buddypress profile setting page….
if ( get_user_meta( $current_user->ID, ‘force-password-change’, true ) ) {
wp_redirect( admin_url( ‘profile.php’ ) );
exit; // never forget this after wp_redirect!
}