Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viniciusrtf/9c280039db2246a277c3 to your computer and use it in GitHub Desktop.
Save viniciusrtf/9c280039db2246a277c3 to your computer and use it in GitHub Desktop.
WooCommerce Hook: Remove 'order notes' from checkout
<?php
/**
* Hook: Remove 'order notes' from checkout
*/
add_filter( 'woocommerce_checkout_fields' , 'lenura_remove_order_notes_from_checkout' );
function lenura_remove_order_notes_from_checkout( $fields ) {
unset($fields['order']['order_comments']);
return $fields;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment