Hi Yehudayh and DuoGeek,
Thank you both for your answers, and apologies as I should have been more specific. The website I’m working on is a normal WP website, with a Gravity Form (GF) registration form, and a GF Login form.
In addition, I also added the GF “hooks” described here with regard to form submission and validation.
Following the suggestion of Yehudah, I have added those two snippets to the function.php file:
add_filter( ‘wp_mail_from’, ‘my_mail_from’ );
function my_mail_from( $email )
{
return “[email protected]”;
}
AND
add_filter( ‘wp_mail_from_name’, ‘my_mail_from_name’ );
function my_mail_from_name( $name )
{
return “Wijngaards Institute for Catholic Research”;
}
As a consequence, the confirmation email new subscribers will get will come from the [email protected] and it will be marked as “Wijngaards Institute for Catholic Research”. So far so good.
A few more questions though: in your opinion is the function.php file the best place for those snippets of code?
More importantly, I still cannot seem to modify the text of the message they receive in the activation email. I have found this link which seems to be relevant, but it also looks quite complex.
One of the reasons I need to change the text of the activation message is that both the email confirming activation AND the “activation successful” webpage contain by default a line inviting the new user to login to the default WP login page, that is /wp-login.php.
I don’t want users to login there, as they would be presented with the Dashboard. Rather, I want them to use the Login page I’ve set up, which will automatically redirect them to the Wiki section of the website, which they will then be able to edit (I have managed to tweak their editing privileges so as to only allow them to edit the Wiki section of the website, and not the rest. Normal visitor to the website who have not registered cannot edit the wiki).
As you have probably gathered by now, I’m very new to all this and am simply trying to find solutions by looking here and there on the internet, but i find it very difficult!
Thanks for all your help!