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

    (@champsupertramp)

    Hi @azadbakhsh

    It requires customization on your end. You can use the following UM action hooks to attach your custom redirection:

    After user updated the profile:

    add_action( 'um_after_user_updated', 'um_custom_after_user_updated');
    function um_custom_after_user_updated( ){
       // do something
    }

    After user updated the account form:

    add_action( 'um_after_user_account_updated','um_custom_after_user_updated_account');
    function um_custom_after_user_updated_account(){
       // do something
    }

    Regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Ultimate Member – Redirect after saving profile’ is closed to new replies.