Skip to content

Documentation

Extensive Documentation for PowerPack & WooPack to help you with common questions and issues.

PowerPack

⌘K
  1. Home
  2. Docs
  3. PowerPack
  4. Modules
  5. Login Form
  6. How to change password reset message?

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' );
×