umm_stripe_status_past_due
Triggers when the subscription is pass due
do_action( 'umm_stripe_status_past_due', $um_user_id, $role_past_due )
Parameters
$um_user_id integer
the user ID.
$role_past_due string
the user Role.
Sample Usage
add_action( 'umm_stripe_status_past_due', 'um_04172024_stripe_status_past_due', 10, 2 );
function um_04172024_stripe_status_past_due( $um_user_id, $role_past_due ){
// do something
}
Related Snippets
Nothing was found