Home › Forums › WoodMart support forum › remove additional information remove additional information This topic has 3 replies, 2 voices, and was last updated 4 years, 12 months ago by Aizaz Imtiaz Awan. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts November 23, 2019 at 10:34 am #158519 masood nikrooParticipant Hello, i want to remove addtional information from checkout. https://prnt.sc/q0xxag Regards. November 23, 2019 at 11:51 am #158530 Aizaz Imtiaz AwanKeymaster Hello, To remove the additional information from the checkout page. You can use the below code in funtions.php file: add_filter( 'woocommerce_checkout_fields' , 'remove_order_notes' ); function remove_order_notes( $fields ) { unset($fields['order']['order_comments']); return $fields; } Best Regards. November 25, 2019 at 12:21 pm #158834 masood nikrooParticipant Hello, how to remove additional information text on my checkout? https://prnt.sc/q1qlwx Regards. November 25, 2019 at 1:23 pm #158868 Aizaz Imtiaz AwanKeymaster Hello, To hide the additional information text from my checkout page. You can use the below CSS code in theme settings >> custom CSS >> global custom CSS. .woocommerce-additional-fields h3{ display:none; } Result: https://jmp.sh/7yo9tX2 Best Regards. Author Posts Tagged: additional information Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to create new topics. Login / Register