woocommerce_register_form action-hook . WC 1.0
Usage
add_action( 'woocommerce_register_form', 'action_function_name_3134' ); function action_function_name_3134(){ // action... }
Where the hook is called
In file: /templates/myaccount/form-login.php
woocommerce_register_form
woocommerce/templates/myaccount/form-login.php 103
<?php do_action( 'woocommerce_register_form' ); ?>
Where in WP core the hook is used WooCommerce
woocommerce/includes/wc-template-hooks.php 298
add_action( 'woocommerce_register_form', 'wc_registration_privacy_policy_text', 20 );