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

