Viewing 1 replies (of 1 total)
  • Plugin Author Cristian Antohe

    (@sareiodata)

    Hi Jenny,

    We had a security bug and for now we’re not sending the password in the email (we’ll probably fix this in a future update)

    In the mean time, you can change that text like so:

    /*
     * Change the text for username in login and password reset.
     */
    function wppb_change_text_login( $translated_text, $text, $domain ) {
    	$original_text = 'Your selected password at signup';
    	$new_text = 'NEW Your selected password at signup';
    	if ( $text == $original_text && $domain == 'profilebuilder' ){
    		$translated_text = $new_text;
    	}
    
    	return $translated_text;
    }
    add_filter( 'gettext', 'wppb_change_text_login', 30, 3 );

    You can add this code in functions.php or a standalone plugin: https://gist.github.com/sareiodata/76f701e01db6685829db

Viewing 1 replies (of 1 total)
  • The topic ‘User password from email confirmation doesn't show’ is closed to new replies.