woocommerce_before_checkout_form_cart_notices
Show the checkout.
Usage
add_action( 'woocommerce_before_checkout_form_cart_notices', 'wp_kama_woocommerce_before_checkout_form_cart_notices_action' ); /** * Function for `woocommerce_before_checkout_form_cart_notices` action-hook. * * @return void */ function wp_kama_woocommerce_before_checkout_form_cart_notices_action(){ // action... }
Where the hook is called
woocommerce_before_checkout_form_cart_notices
woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php 343
do_action( 'woocommerce_before_checkout_form_cart_notices' );
Where the hook is used in WooCommerce
woocommerce/includes/wc-template-hooks.php 315
add_action( 'woocommerce_before_checkout_form_cart_notices', 'woocommerce_output_all_notices', 10 );