Created
March 28, 2018 13:47
-
-
Save swoboda/e28475dc3cec84b24a72851f0a671bb1 to your computer and use it in GitHub Desktop.
woocommerce-payment-status-note
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Do NOT include the opening php tag | |
add_filter( 'woocommerce_payment_status_note', 'wpdesk_payment_status_note' ); | |
/** | |
* Change order note for WooCommerce Automatic Payment Status | |
* | |
*/ | |
function wpdesk_payment_status_note() { | |
return 'Order completed. Yeah!'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment