woocommerce_checkout_after_customer_details action-hookWC 1.0

Usage

add_action( 'woocommerce_checkout_after_customer_details', 'wp_kama_woocommerce_checkout_after_customer_details_action' );

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

	// action...
}

Where the hook is called

In file: /templates/checkout/form-checkout.php
woocommerce_checkout_after_customer_details
woocommerce/templates/checkout/form-checkout.php 48
<?php do_action( 'woocommerce_checkout_after_customer_details' ); ?>

Where the hook is used in WooCommerce

Usage not found.