Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @vforte

    You can attach it to do_action( 'um_after_user_updated', $user_id, $args, $to_update );

    e.g.

    add_action("um_after_user_updated","um_custom_after_user_updated", 10, 3 );
    function um_custom_after_user_updated(  $user_id, $args, $to_update ){
         // Do something
    }

    Regards,

    Thread Starter vforte

    (@vforte)

    Thanks @champsupertramp, it works perfectly!

    Hi!

    I used the um_custom_after_user_updated function and it works, in my case, it is a redirection ( with header(“Location:URL) ), but the but attachments are not saved. Can you help me please?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Trigger update_user webhook when user profile is updated’ is closed to new replies.