woocommerce_register_form_end
Usage
add_action( 'woocommerce_register_form_end', 'wp_kama_woocommerce_register_form_end_action' );
/**
* Function for `woocommerce_register_form_end` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_register_form_end_action(){
// action...
}Where the hook is called
In file: /templates/myaccount/form-login.php
woocommerce_register_form_end
woocommerce/templates/myaccount/form-login.php 110
<?php do_action( 'woocommerce_register_form_end' ); ?>