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 );