WC_Gateway_BACS::thankyou_page()publicWC 1.0

Output for the order received page.

Method of the class: WC_Gateway_BACS{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Gateway_BACS = new WC_Gateway_BACS();
$WC_Gateway_BACS->thankyou_page( $order_id );
$order_id(int) (required)
Order ID.

WC_Gateway_BACS::thankyou_page() code WC 8.7.0

public function thankyou_page( $order_id ) {

	if ( $this->instructions ) {
		echo wp_kses_post( wpautop( wptexturize( wp_kses_post( $this->instructions ) ) ) );
	}
	$this->bank_details( $order_id );

}