How to change account confirmation email ?
You can change account confirmation email by following guide bellow:
1. Go to your file manager (via FTP or file manager)
2. Go to /public_html/wp-content/plugins/
3. Open file name bp-custom.php (If you don't have it yet, you can create by yourself)
4. Add code bellow to your bp-custom.php
/**
* Change Confirmation Message.
*/
function yzc_translate_account_activation_msg( $translated_text ) {
switch ( $translated_text ) {
case 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.' :
$translated_text = __( 'your-text-here', 'youzify' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'yzc_translate_account_activation_msg', 30 );
5. change "your-text-here" with message that you want to use