woocommerce_before_checkout_form action-hook . WC 1.0
Usage
add_action( 'woocommerce_before_checkout_form', 'action_function_name_3195' ); function action_function_name_3195( $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 in WP core the hook is used WooCommerce
woocommerce/includes/wc-template-hooks.php 214
add_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_login_form', 10 );
woocommerce/includes/wc-template-hooks.php 215
add_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 );
woocommerce/includes/wc-template-hooks.php 309
add_action( 'woocommerce_before_checkout_form', 'woocommerce_output_all_notices', 10 );