/** * Add custom message at payment button */ add_action('woocommerce_review_order_after_submit', 'cc_custom_message_at_payment_button'); function cc_custom_message_at_payment_button() { echo '

Please look at our Privacy Policy for more information on how we use your personal data.

'; }