Automattic\WooCommerce\Blocks\BlockTypes\OrderConfirmation
Status::render_content_fallback
This is what gets rendered when the order does not exist.
Method of the class: Status{}
No Hooks.
Returns
String.
Usage
// protected - for code of main (parent) or child class $result = $this->render_content_fallback();
Status::render_content_fallback() Status::render content fallback code WC 10.5.0
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>';
}