woocommerce_checkout_before_customer_details
Usage
add_action( 'woocommerce_checkout_before_customer_details', 'wp_kama_woocommerce_checkout_before_customer_details_action' );
/**
* Function for `woocommerce_checkout_before_customer_details` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_checkout_before_customer_details_action(){
// action...
}Where the hook is called
woocommerce_checkout_before_customer_details
woocommerce/templates/checkout/form-checkout.php 36
<?php do_action( 'woocommerce_checkout_before_customer_details' ); ?>
Where the hook is used in WooCommerce
woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php 236
add_action( 'woocommerce_checkout_before_customer_details', array( $this, 'render_buttons_container' ) );
woocommerce/includes/wc-template-hooks.php 227
add_action( 'woocommerce_checkout_before_customer_details', 'wc_get_pay_buttons', 30 );