woocommerce_checkout_before_customer_details
Использование
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... }
Где вызывается хук
woocommerce_checkout_before_customer_details
woocommerce/templates/checkout/form-checkout.php 36
<?php do_action( 'woocommerce_checkout_before_customer_details' ); ?>
Где используется хук в WooCommerce
woocommerce/includes/wc-template-hooks.php 227
add_action( 'woocommerce_checkout_before_customer_details', 'wc_get_pay_buttons', 30 );