woocommerce_auth_page_footer
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
woocommerce_auth_page_footer
woocommerce/templates/auth/form-grant-access.php 68
<?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 293
add_action( 'woocommerce_auth_page_footer', 'woocommerce_output_auth_footer', 10 );