woocommerce_auth_page_header action-hook . WC 1.0
Usage
add_action( 'woocommerce_auth_page_header', 'action_function_name_1123' ); function action_function_name_1123(){ // action... }
Where the hook is called
In file: /templates/auth/form-login.php
woocommerce_auth_page_header
woocommerce/templates/auth/form-login.php 20
do_action( 'woocommerce_auth_page_header' ); ?>
woocommerce/templates/auth/form-grant-access.php 21
<?php do_action( 'woocommerce_auth_page_header' ); ?>
Where in WP core the hook is used WooCommerce
woocommerce/includes/wc-template-hooks.php 276
add_action( 'woocommerce_auth_page_header', 'woocommerce_output_auth_header', 10 );