block provider that issend …
-
Hello,
I use the Code sniped:
add_action(‘um_before_new_user_register’, ‘require_google_email_for_signup’);
function require_google_email_for_signup( $args ) {
extract($args);
if ( !strstr( $user_email, ‘@gmail.com’ ) )
exit( wp_redirect( add_query_arg(‘err’, ‘you_must_have_googlemail’) ) );
}Now it’s working anymore. I have changed the “um_before_new_user_register” to “um_add_user_frontend_submitted”
The prozess works, only domains I add to this are allowed. But no Data is given into the WordPress System, there are only “UserXX” No Name no Mail address.
Can anyone help?
The topic ‘block provider that issend …’ is closed to new replies.