Skip to content

Instantly share code, notes, and snippets.

@cuocsongso
Created November 14, 2019 06:40
Show Gist options
  • Save cuocsongso/66b150bb2a9598f315f29eecfc4a7cf8 to your computer and use it in GitHub Desktop.
Save cuocsongso/66b150bb2a9598f315f29eecfc4a7cf8 to your computer and use it in GitHub Desktop.
Change Order notes (opcional)
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