Learn how to easily display a custom message on the checkout page of your WooCommerce store.
// Add a custom message to the checkout page
add_action( 'woocommerce_checkout_before_order_review', 'codebykp_custom_checkout_message' );
function codebykp_custom_checkout_message() {
echo '<div class="custom-message">Thank you for choosing us!</div>';
}