Problem with registration hooks
-
I have created a custom plugin that (among other things) after a successful UM user registration needs to pass the form data to an API for a 3rd party CRM system (Revel). I have hooked to both um_user_register and um_registration_complete which different resulting problems.
If I use:
add_action(‘um_user_register’, ‘createNewUser’, 20, 2)
my function never gets called.If I use:
add_action(‘um_registration_complete’, ‘createNewUser’, 20, 2)
my function is called and the data is passed correctly, but I get an “Invalid Nonce” error.Any ideas of what is going on?
Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Problem with registration hooks’ is closed to new replies.