Created
November 14, 2019 06:40
-
-
Save cuocsongso/66b150bb2a9598f315f29eecfc4a7cf8 to your computer and use it in GitHub Desktop.
Change Order notes (opcional)
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
add_filter( 'woocommerce_checkout_fields' , 'thembay_labels_olders', 9999 ); | |
function thembay_labels_olders( $f ) { | |
$f['order']['order_comments']['label'] = 'Change Order notes'; | |
return $f; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment