add_action( ‘woocommerce_thankyou’, ‘custom_thank_you_message’ );
function custom_thank_you_message( $order_id ) {
echo ‘

Thank you for your purchase!

‘;
echo ‘

Your order number is ‘ . $order_id . ‘. We’ll contact you soon for confirmation.’;
}