woocommerce_auth_page_footer action-hookWC 1.0

Usage

add_action( 'woocommerce_auth_page_footer', 'wp_kama_woocommerce_auth_page_footer_action' );

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

	// action...
}

Where the hook is called

In file: /templates/auth/form-grant-access.php
woocommerce_auth_page_footer
woocommerce/templates/auth/form-grant-access.php 61
<?php do_action( 'woocommerce_auth_page_footer' ); ?>
woocommerce/templates/auth/form-login.php 54
<?php do_action( 'woocommerce_auth_page_footer' ); ?>

Where the hook is used in WooCommerce

woocommerce/includes/wc-template-hooks.php 277
add_action( 'woocommerce_auth_page_footer', 'woocommerce_output_auth_footer', 10 );