woocommerce_before_order_notes action-hookWC 1.0

Usage

add_action( 'woocommerce_before_order_notes', 'wp_kama_woocommerce_before_order_notes_action' );

/**
 * Function for `woocommerce_before_order_notes` action-hook.
 * 
 * @param  $checkout 
 *
 * @return void
 */
function wp_kama_woocommerce_before_order_notes_action( $checkout ){

	// action...
}
$checkout
-

Where the hook is called

In file: /templates/checkout/form-shipping.php
woocommerce_before_order_notes
woocommerce/templates/checkout/form-shipping.php 51
<?php do_action( 'woocommerce_before_order_notes', $checkout ); ?>

Where the hook is used in WooCommerce

Usage not found.