um_update_profile_full_name
Hook type
Action
Description
On update user profile change full name
Parameters
$user_id
(int) User ID
$args
(array) Form data
Usage
add_action( 'um_update_profile_full_name', 'function_name', 10, 2 );
Examples
<?php
add_action( 'um_update_profile_full_name', 'my_update_profile_full_name', 10, 2 );
function my_update_profile_full_name( $user_id, $args ) {
    // your code here
}
?>
Change Log
Since: 2.0
Source
um_update_profile_full_name is located in includes/core/um-actions-register.php::line 682