New user email & password
-
I downloaded the plugin and the password wasn’t send in plain text for new users (wich is problematic).
For a temporary solution :
i see that the plain password is sent to the “wp_new_user_notification()” function trough the “notify” parameter, but actually not used at line 423 of sb_welcome_email_editor
$user_message = str_replace('[plaintext_password]', ******, $user_message); $user_message = str_replace('[user_password]', ******, $user_message);
REPLACE WITH
$user_message = str_replace('[plaintext_password]', $notify, $user_message); $user_message = str_replace('[user_password]', $notify, $user_message);
So there is my fix, but i hope it will be available in the new update (if not i’ll loose this).
Thanks in advance && hope it’ll help smbdy
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘New user email & password’ is closed to new replies.