Remove the additional information title in Checkout Page

Hi how do i remove the additional information title in my checkout page

i tried using the code below but it is not working.

li.additional_information_tab {
display: none !important;
}

/> / Remove the additional information tab

function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘additional_information’] );
return $tabs;
}
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );

Hi @hnr2802,

Thank you so much for sharing us the solutions.

Feel free to ask us again.

Thanks :slight_smile:

i think you get me wrong. The codes does not work on my site

Hello There,

To hide the additional information title in your checkout page, please add the following CSS code in the X > Launch > Theme Options > Global CSS (http://prntscr.com/evui3r)

.woocommerce-checkout .woocommerce-additional-fields h3 {
    display: none;
}

Hope this helps. Please let us know how it goes.