This action runs when a user updates his/her profile image.
do_action('pm_update_profile_image',$user_id);
Simple example
function ProfileGrid_update_profile_image($user_id) { //do something with the user id when someone updates the profile image here. } add_action( 'pm_update_profile_image', 'ProfileGrid_update_profile_image' );