WooCommerce仅通过电子邮件重置密码
可以通过电子邮件更改用户的方式,该用户只能通过电子邮件重置密码(验证电子邮件和显示错误,当输入而不是电子邮件时),我找不到挂钩。
It is possible to change form-lost-password in the way, that user can be reset password only by email (validate username like email and show error, when input not email), I don't find a hook for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用“ Lostpassword_errors”钩。
请检查wp-rudes/user.php的第2930行,
因此,如果您只想通过电子邮件地址重置密码,而不是通过用户名来重置密码,则可以使用以下代码。
当用户输入不是电子邮件地址时,它将返回错误。
希望它能帮助您。
更新:
如果您使用的是WooCommerce,并且只想通过MyAccount页面(客户区域)上的电子邮件地址重置密码,则需要使用“ LostalSpallword_post”挂钩。
You can use "lostpassword_errors" hook.
Please check line 2930 of wp-includes/user.php
So, if you want to reset password only by email address, not by username, you can use following code.
It will return error when user input is not email address.
Hope it would help you.
UPDATE:
If you are using woocommerce and you want to reset password by email address only on myaccount page(customer area), you need to use "lostpassword_post" hook.