woocommerce_disable_password_change_notification filter-hookWC 1.0

Usage

add_filter( 'woocommerce_disable_password_change_notification', 'wp_kama_woocommerce_disable_password_change_notification_filter' );

/**
 * Function for `woocommerce_disable_password_change_notification` filter-hook.
 * 
 * @param  $false 
 *
 * @return 
 */
function wp_kama_woocommerce_disable_password_change_notification_filter( $false ){

	// filter...
	return $false;
}
$false
-

Where the hook is called

WC_Shortcode_My_Account::reset_password()
woocommerce_disable_password_change_notification
woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php 381
if ( ! apply_filters( 'woocommerce_disable_password_change_notification', false ) ) {

Where the hook is used in WooCommerce

Usage not found.