woocommerce_after_customer_login_form action-hookWC 1.0

Usage

add_action( 'woocommerce_after_customer_login_form', 'wp_kama_woocommerce_after_customer_login_form_action' );

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

	// action...
}

Where the hook is called

In file: /templates/myaccount/form-login.php
woocommerce_after_customer_login_form
woocommerce/templates/myaccount/form-login.php 119
<?php do_action( 'woocommerce_after_customer_login_form' ); ?>

Where the hook is used in WooCommerce

Usage not found.