woocommerce_echeck_form_start

woocommerce_echeck_form_start

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_echeck_form_start') is found 1 times:

  • /includes/gateways/class-wc-payment-gateway-echeck.php line 60
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    $fields = wp_parse_args( $fields, apply_filters( 'woocommerce_echeck_form_fields', $default_fields, $this->id ) );
    ?>
     
    <fieldset id="<?php echo esc_attr( $this->id ); ?>-cc-form" class='wc-echeck-form wc-payment-form'>
        <?php do_action( 'woocommerce_echeck_form_start', $this->id ); ?>
        <?php
        foreach ( $fields as $field ) {
            echo $field; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
        }
        ?>
        <?php do_action( 'woocommerce_echeck_form_end', $this->id ); ?>