Hi @lb80,
1st: Do you have a specific code that will give a message like this?
Thank you, we will contact you shortly.
We have provided a code for both one for changing pending email messages and another for changing messages which show when a user registers.
You can use anyone which you want.
Code which will change the pending email message to the user.
// pending email message functionality
add_filter('new_user_approve_welcome_user_message', 'new_user_approve_welcome_user_message_callback', 10, 2);
function new_user_approve_welcome_user_message_callback($message, $user_email) {
// user pending email message comes here
$new_message = "Thank you, we will contact you shortly.";
return $new_message;
}
Code which will change the message shown when a new user register.
// message when a new user registers functionality
add_filter('new_user_approve_pending_message_default', 'nua_user_pending_message');
function nua_user_pending_message($message) {
// new user register message
$message = "Thank you, we will contact you shortly.";
return $message;
}
2nd: I’m struggling to find one that says this.
Also when someone applies they are getting an email with their login details etc rather than an email to say that their application is being looked at before approval. How do I change this, please?
It is not coming from New User approval it is from another plugin.
Thank you