Remove Order Notes
-
Hi!
I have used this code (in themes functions.php) to remove order notes field in checkout:// remove Order Notes from checkout field in Woocommerce
add_filter( ‘woocommerce_checkout_fields’ , ‘alter_woocommerce_checkout_fields’ );
function alter_woocommerce_checkout_fields( $fields ) {
unset($fields[‘order’][‘order_comments’]);
return $fields;
}But it has stopped to work… I think it’s because some update of Svea Checkout plugin.
How can we remove Order Notes field?Best regards
Bruno
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove Order Notes’ is closed to new replies.