Does anybody know of a plugin available for WordPress that would require a new user to enter their mobile phone number as part of the sign up process?
The user would then be sent a verification code via SMS which they would have to enter to complete the sign up process.
Any ideas?
Thanks
Consider these resources:
The concept behind this would be to send a randomly generated string to the mobile phone number that the user enters, store it as a transient, and ask the user to enter it to send him his/her password via e-mail.
wp-login.php?action=register
already does half of the job – sending he password to the registered person, you would only have to stop lay this process off until the password from the SMS is provided.So an options would be:
Alternatively you can:
The second option is very very simple, most gateways provide PHP libraries that you can use to interface with the API, override the
wp_mail()
pluggable to send the password through the gateway.Surely this would require a third party text service. Theses are not normally free. We have used http://www.txtlocal.co.uk/ before for sending / receiving texts but I’ve not heard of any plugin that would offer that for you.