WC_Payment_Gateway_ECheck::payment_fields()

Builds our payment fields area – including tokenization fields for logged in users, and the actual payment fields.


Description Description


Source Source

File: includes/gateways/class-wc-payment-gateway-echeck.php

	public function payment_fields() {
		if ( $this->supports( 'tokenization' ) && is_checkout() ) {
			$this->tokenization_script();
			$this->saved_payment_methods();
			$this->form();
			$this->save_payment_method_checkbox();
		} else {
			$this->form();
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.