Automattic\WooCommerce\Blocks\BlockTypes\OrderConfirmation

Status::render_content_fallback()protectedWC 1.0

This is what gets rendered when the order does not exist.

Method of the class: Status{}

No Hooks.

Return

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->render_content_fallback();

Status::render_content_fallback() code WC 9.7.1

protected function render_content_fallback() {
	// phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingHookComment
	return '<p>' . esc_html__( 'Please check your email for the order confirmation.', 'woocommerce' ) . '</p>';
}