How to change password reset message?
You can translate the password reset message via any translation plugin or using the following filter: pp_login_form_reset_password_message
Please add the following code in your current theme’s functions.php file to change the message using filter:
function powerpack_login_password_reset_msg( $msg ) {
// change the message here.
$msg = 'Enter a password below';
return $msg;
}
add_filter( 'pp_login_form_reset_password_message', 'powerpack_login_password_reset_msg' );