This topic has 4 replies, 2 voices, and was last updated 6 years, 2 months ago ago by Rose Tyler
Hi, easy way to ermove order comments at checkout? Added
// 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 still shows… Any better solution?
Hello,
Did you add the code in functions.php file of your child theme that is activated ou your site?
You may try to add this code in Theme Option > Custom css:
#order_comments_field {
display: none;
}
Let me know the result.
Regards
Solved! When you code was added to Apperance > Customise > Extra CSS it did work.
(FYI: I added the code into a custom PHP plugin, so not to mess with the original PHP. But apparently that did not work. Also -adding your CSS to Theme Options > Custom CSS > Global Custom CSS did not work, only into the Extra CSS field… Strange. )
Hello,
I am glad that your problem was solved.
Feel free to ask if you have any other questions.
Regards
You must be logged in to reply to this topic.Log in/Sign up