woocommerce_echeck_form_start

woocommerce_echeck_form_start

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('woocommerce_echeck_form_start') is found 1 times:

  • /includes/gateways/class-wc-payment-gateway-echeck.php line 60
    		$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 ); ?>