|

srfm_after_password_reset

Description

Fires after a user’s password is reset through the SureForms Pro user-registration flow. (Pro only)

Parameters

$user (WP_User) – The user whose password was reset.

Hook Source

PHP
/**
* hook source
 */
do_action( 'srfm_after_password_reset', $user );

Hook Usage

PHP
add_action( 'srfm_after_password_reset', 'my_callback', 10, 1 ); function my_callback( $user ) { 
// Notify the user or log the reset. 
}

Hook Example

PHP
add_action( 'srfm_after_password_reset', 'my_callback', 10, 1 ); 
function my_callback( $user ) { 
// Notify the user or log the reset. 
}
Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
Table of Contents
Scroll to Top