woocommerce_before_lost_password_confirmation_message action-hookWC 1.0

Usage

add_action( 'woocommerce_before_lost_password_confirmation_message', 'wp_kama_woocommerce_before_lost_password_confirmation_message_action' );

/**
 * Function for `woocommerce_before_lost_password_confirmation_message` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_before_lost_password_confirmation_message_action(){

	// action...
}

Where the hook is called

In file: /templates/myaccount/lost-password-confirmation.php
woocommerce_before_lost_password_confirmation_message
woocommerce/templates/myaccount/lost-password-confirmation.php 23
<?php do_action( 'woocommerce_before_lost_password_confirmation_message' ); ?>

Where the hook is used in WooCommerce

Usage not found.