Hi I am using User verification with Memberpress Plus. And it works great! I have a couple of questions:
How can I edit the Checking Verification pop-up that appears on the verification page?
It is possible to redirect to a custom post type instead a page?
Hi Rob,
Welcome to PickPlugins.
If you want to customize the verification message, you can find this option under Email Verification.
Screenshot: https://i.imgur.com/6x9iSmW.png
Also, you can change the verification page. Under Choose verification page option, you can find all the available pages. Just select one.
Screenshot: https://i.imgur.com/WJa3aBQ.png
But we don't have the option to select by custom post type, However, we have a filter hook available that you can use.
add_filter('user_verification_redirect_after_verification_url', 'user_verification_redirect_after_verification_url_11012021', 10);
function user_verification_redirect_after_verification_url_11012021($url){
// do anything you want with $email_data
$url = 'custom-url-here';
return $url;
}
Let us know if it helps.
Regards.
Unfortunately, we don’t have the option to write custom scripts. You can write custom CSS on your theme style.css file.
Screenshot: https://i.imgur.com/nvx92VE.png