woocommerce_lost_password_confirmation_message filter-hookWC 1.0

Usage

add_filter( 'woocommerce_lost_password_confirmation_message', 'wp_kama_woocommerce_lost_password_confirmation_message_filter' );

/**
 * Function for `woocommerce_lost_password_confirmation_message` filter-hook.
 * 
 * @param  $esc_html__ 
 *
 * @return 
 */
function wp_kama_woocommerce_lost_password_confirmation_message_filter( $esc_html__ ){

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

Where the hook is called

In file: /templates/myaccount/lost-password-confirmation.php
woocommerce_lost_password_confirmation_message
woocommerce/templates/myaccount/lost-password-confirmation.php 25
<p><?php echo esc_html( apply_filters( 'woocommerce_lost_password_confirmation_message', esc_html__( 'A password reset email has been sent to the email address on file for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.', 'woocommerce' ) ) ); ?></p>

Where the hook is used in WooCommerce

Usage not found.