Home › Forums › Plugin Support › User Emails have NOREPLY.com added
- This topic has 9 replies, 6 voices, and was last updated 9 years, 12 months ago by Khaled.
-
AuthorPosts
-
October 24, 2012 at 9:51 pm #2364October 25, 2012 at 12:35 pm #2374KhaledMember
WP need at-least username, email and password for user registration. So for any case, if email is missing while registration we generate {username}@noreply.com as email. If there is email field available then, that email will be use instead.
Thanks.
November 9, 2012 at 10:20 pm #2458marketinggalMemberThank you for your response. There was no email missing. All registrants had email address but we have this error. How do we fix?
Thanks
November 12, 2012 at 11:04 pm #2461SupportMemberHello,
Would you please elaborate the issue. I can’t find the issue in your listed url. However, when the issue is occurred? while you importing new user by UMP tools or while user get registered by UMP shortcode?
Thanks.
November 13, 2012 at 6:25 am #2463marketinggalMemberSee the screenshot of USERS attached. It must have happened during import https://www.dropbox.com/s/0unwr8yxttufyto/noreplyemails.pdf
ALL the email addresses have “noreply” tacked onto the end of their correct email addresses.
How can I fix them all?
November 13, 2012 at 4:43 pm #2464SupportMemberIt seems that, You indicate email(from csv) as username field but did not indicate email field while importing. So UMP generate email because email field is mandatory for user registration.
However, you can reimport those users. Map email field from csv to ump email field and map username field too. If you don’t have username to import, you can map email to username too.
Select “Identify uniquely” by username.
Also check overwrite checkbox while reimporting, so that existing email can be updated.
Thanks.
November 18, 2012 at 8:31 am #2474nigredoMemberHi,
Same issue for me. I tried myself to register a first user (with another mail address than the one used as an admin, of course) and I also have the username followed by noreply.com as registered address.
I tried then to add myself the user, directly from admin dashboard and it does not work either.
February 18, 2013 at 4:50 pm #3048ikarahmaMemberin field editor menu there are two option to add email field:
1.wordpress default fields
2.extra fieldschoose email field from wordpress default fields to be placed in registration form.
- This reply was modified 11 years, 9 months ago by ikarahma.
November 13, 2014 at 3:29 pm #6531jcantMemberI have been using UMP for a year now and resolved an issue I had with needing the username and email address to be the same by using the function
function use_email_as_username($user_email)
{
return $_POST[‘user_login’];
}add_filter(‘user_registration_email’, ‘use_email_as_username’);
I upgraded to 1.1.6 with my upgrade to WP 4.0 and it is no longer working. Basically what I get is the email address populated with username@noreply.com as described above.
How can I still achieve the username and email address being the same without having to ask for it twice in the registration form?
Thanks
James
November 27, 2014 at 4:57 pm #6551KhaledMemberHi James,
Please upgrade to our dev version or use ‘pre_user_email’ filter hook.
Thanks.
-
AuthorPosts
- You must be logged in to reply to this topic.