woocommerce_echeck_form_end
Usage
add_action( 'woocommerce_echeck_form_end', 'wp_kama_woocommerce_echeck_form_end_action' ); /** * Function for `woocommerce_echeck_form_end` action-hook. * * @param $id * * @return void */ function wp_kama_woocommerce_echeck_form_end_action( $id ){ // action... }
- $id
- -
Where the hook is called
woocommerce/includes/gateways/class-wc-payment-gateway-echeck.php 66
<?php do_action( 'woocommerce_echeck_form_end', $this->id ); ?>