woocommerce_checkout_billing action-hookWC 1.0

Usage

add_action( 'woocommerce_checkout_billing', 'wp_kama_woocommerce_checkout_billing_action' );

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

	// action...
}

Where the hook is called

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

Where the hook is used in WooCommerce

woocommerce/includes/class-wc-checkout.php 58
add_action( 'woocommerce_checkout_billing', array( self::$instance, 'checkout_form_billing' ) );