How can i change the login component so that it uses a new field in the registration form instead the username or email (i.e account number)? - wordpress

So basically, the title. How can i change the login component so that it uses a new field in the registration form instead the username or email, my client wants to use an account number that the users type in the registration form. So the login would be Account Number/password.
Thank you in advance

You can use "Wp membership plugin" and in registration page username field, you can customize and add new field like Account No.

Related

Creating WordPress account based on email only submit

Is it possible to create a WordPress account for users who submit an email (no password or username) through an email collection form?
I am looking at sending the user a link to their email to set a password and setup the account in full. The use case is content locking to signed up/logged in users without requiring them to go through the full sign up process. Thanks
I would recommend one of two options: 1) search wordpress.org for a frontend user registration form that may allow you to customize the password options or 2) simply use a generic form or subscription plugin to collect user info, create the new user on the backend manually and then send them an email with a link to change their password

woocommerce user registration form without email

I want to customers can register on woocommerce registration form without email instead of it they can register with username(not email) and password.
how i can do that?
Any help would be appreciated
Email is required filed for every user in WordPress. Woocommerce registration - create users. Emails needed for recovery pass, notifications, etc..
But login possible by username, without email.

Login without password FOSUserBundle Symfony3

I want to authorize a user without using a password. Authorization will only take place on the field username. Is it possible to do this in FOSUserBundle? I know that you can write a custom UserProvider, but my goal is to do it with FOSUserBundle!
In login form, make the password field hidden (instead of type="password"), with a value of "whatever" (which will be the password of all the users).
Try if it is possible?

HWIOAuthBundle permitting the user to add a password before submitting the data retrieved from facebook

there! I have just integrated HWIOAuthBundle with my Symfony2 application, but I would like to permit the user to enter a password, which he will use for my website login beside the email that will be retrieved from facebook before submitting the form that persists the data(email from facebook and password entered by the user) to my database. I would like to let the user submit this form and not do it automatically as it is done now,,Is there a class in the bundle that I could modify or override to achieve this? I hope I made myself clear enough,,Thanks!!

How could I do login of a user during registration form process

A customer ask to create a one step form : registration + login;
I have configure plone to let the user choose the password, so at data level we should be able to achieve this.
Now at code level, I have no idea which API I'm supposed to use to 'logged in' a user while having it's username and password.
By default Plone show two screen after the registration before having the web site:
registration form
success page with a login button
success logged in page.
have to move your self in the website has member
I want to short cut this to:
registration form
redirect to dashboard
You can use the updateCredentials() method on the acl_users user folder; it'll call the right plugins, resulting in a cookie being set for the user in a default Plone setup:
users = getToolByName(self.context, 'acl_users')
users.updateCredentials(self.request, self.request.response, username, password)
The method needs request, response, username and password parameters.
Customize portal_skins/plone_login/registered and insert a redirect to the dashboard.

Resources