woocommerce_before_customer_login_form action-hookWC 1.0

Usage

add_action( 'woocommerce_before_customer_login_form', 'wp_kama_woocommerce_before_customer_login_form_action' );

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

	// action...
}

Where the hook is called

In file: /templates/myaccount/form-login.php
woocommerce_before_customer_login_form
woocommerce/templates/myaccount/form-login.php 22
do_action( 'woocommerce_before_customer_login_form' ); ?>

Where the hook is used in WooCommerce

woocommerce/includes/wc-template-hooks.php 311
add_action( 'woocommerce_before_customer_login_form', 'woocommerce_output_all_notices', 10 );