woocommerce_register_form_tag action-hookWC 1.0

Usage

add_action( 'woocommerce_register_form_tag', 'wp_kama_woocommerce_register_form_tag_action' );

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

	// action...
}

Where the hook is called

In file: /templates/myaccount/form-login.php
woocommerce_register_form_tag
woocommerce/templates/myaccount/form-login.php 72
<form method="post" class="woocommerce-form woocommerce-form-register register" <?php do_action( 'woocommerce_register_form_tag' ); ?> >

Where the hook is used in WooCommerce

Usage not found.