woocommerce_before_checkout_form
Usage
add_action( 'woocommerce_before_checkout_form', 'wp_kama_woocommerce_before_checkout_form_action' ); /** * Function for `woocommerce_before_checkout_form` action-hook. * * @param $checkout * * @return void */ function wp_kama_woocommerce_before_checkout_form_action( $checkout ){ // action... }
- $checkout
- -
Where the hook is called
woocommerce_before_checkout_form
woocommerce/templates/checkout/form-checkout.php 22
do_action( 'woocommerce_before_checkout_form', $checkout );
Where the hook is used in WooCommerce
woocommerce/includes/wc-template-hooks.php 221
add_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_login_form', 10 );
woocommerce/includes/wc-template-hooks.php 222
add_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 );
woocommerce/includes/wc-template-hooks.php 316
add_action( 'woocommerce_before_checkout_form', 'woocommerce_output_all_notices', 10 );