WooCommerce Hide Additional Information Checkout

WooCommerce Hide Additional Information CheckoutIf you want to clean up the WooCommerce checkout page you can hide additional information details on the checkout page as well as disable the fields that you do not need.

In this quick post, I want to show you how you can hide additional  information on the checkout page using some quick filters added to the functions.php file.

Previously shared the ultimate WooCommerce hide guide that details all the necessary ways to customize WooCommerce by hiding the features that you do not want on your store.

WooCommerce Hide Additional Information Checkout

To hide additional information checkout add the following code snippet to your functions.php file in the active theme:

// Hide Title - Additional Information 
add_filter( 'woocommerce_enable_order_notes_field', '__return_false', 9999 );

// Hide Order Notes Field
add_filter( 'woocommerce_checkout_fields' , 'remove_order_notes' );

function remove_order_notes( $fields ) {
     unset($fields['order']['order_comments']);
     return $fields;
}

Similar Articles