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