woocommerce_pay_order_before_submit action-hookWC 1.0

Usage

add_action( 'woocommerce_pay_order_before_submit', 'wp_kama_woocommerce_pay_order_before_submit_action' );

/**
 * Function for `woocommerce_pay_order_before_submit` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_pay_order_before_submit_action(){

	// action...
}

Where the hook is called

In file: /templates/checkout/form-pay.php
woocommerce_pay_order_before_submit
woocommerce/templates/checkout/form-pay.php 100
<?php do_action( 'woocommerce_pay_order_before_submit' ); ?>

Where the hook is used in WooCommerce

Usage not found.