Retrieve Data After Register
-
Hey,
I’m trying to retrieve data user after register, generally, first name, last name and email. Using this function
add_action(‘user_registration_after_register_user_action’, ‘ur_get_form_fields’, 10, 3);
function ur_get_form_fields($form_data, $form_id, $user_id)
{
var_dump($form_data);
}But when i’m trying to use $form_data, id or user_id variable it gives me an error “Unexpected token A in JSON at position 0”
Any ideas?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Retrieve Data After Register’ is closed to new replies.