woocommerce_auth_page_header action-hookWC 1.0

Usage

add_action( 'woocommerce_auth_page_header', 'wp_kama_woocommerce_auth_page_header_action' );

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

	// action...
}

Where the hook is called

In file: /templates/auth/form-grant-access.php
woocommerce_auth_page_header
woocommerce/templates/auth/form-grant-access.php 21
<?php do_action( 'woocommerce_auth_page_header' ); ?>
woocommerce/templates/auth/form-login.php 20
do_action( 'woocommerce_auth_page_header' ); ?>

Where the hook is used in WooCommerce

woocommerce/includes/wc-template-hooks.php 276
add_action( 'woocommerce_auth_page_header', 'woocommerce_output_auth_header', 10 );