Is there a mechanism for resending the validation link email? I can’t seem to find it. I do see where an admin can validate the email manually, but I’m looking for user self-service, ideally.
Hi,
This feature is not currently available, but it is on our RoadMap. As a temporary workaround, you can mark users as verified manually in WordPress/Users, e.g., if they contact you complaining that they didn’t get the email.
I hope this is helpful to you.
Surely there must be a way to do it programatically. Perhaps triggered by a button or link?
Sorry, there’s no such feature yet (it’s planned, though), but if you’re familiar with coding it’s possible to implement a custom button that would send an email in the same way the built-in form sends it hivepress/includes/controllers/class-user.php at master · hivepress/hivepress · GitHub For example, via a simple form that requires entering the email address, which finds the related user on submission, check if the user is not verified yet, and if not then sends an email.
Hope this helps
I will take a look. Thanks.