woocommerce_credit_card_form_end action-hookWC 1.0

Usage

add_action( 'woocommerce_credit_card_form_end', 'wp_kama_woocommerce_credit_card_form_end_action' );

/**
 * Function for `woocommerce_credit_card_form_end` action-hook.
 * 
 * @param  $id 
 *
 * @return void
 */
function wp_kama_woocommerce_credit_card_form_end_action( $id ){

	// action...
}
$id
-

Where the hook is called

WC_Payment_Gateway_CC::form()
woocommerce_credit_card_form_end
woocommerce/includes/gateways/class-wc-payment-gateway-cc.php 90
<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>

Where the hook is used in WooCommerce

Usage not found.