umm_stripe_status_changed
Triggers when the status has changed
Since 1.0.2do_action( 'umm_stripe_status_changed', $status, $um_user_id, $role_active )
Parameters
$status string
Status name.
$um_user_id integer
the user ID.
$role_active string
the user Role.
Sample Usage
add_action( 'umm_stripe_status_changed', 'um_12202024_stripe_status_changed', 10, 3 );
function um_12202024_stripe_status_changed( $status, $um_user_id, $role_active ){
// do something
}
Related Snippets
Nothing was found