Home Forums WoodMart support forum how to delete the "additional information" sub tab for single product page Reply To: how to delete the "additional information" sub tab for single product page

#320494

Luke Nielsen
Keymaster

Hello,

Please, try to add this code to the functions.php file in your child theme, to remove the “Additional Information” tab from your single product page

if ( ! function_exists( 'wd_single_disable_additional_tab' ) ) {

    function wd_single_disable_additional_tab( $tabs ) {
        unset( $tabs['additional_information'] );

        return $tabs;
    }

    add_filter( 'woocommerce_product_tabs', 'wd_single_disable_additional_tab', 105 );
}

Kind Regards