How to remove product tabs in single product view?
12345678add_filter( 'woocommerce_product_tabs', 'woo_remove_tab', 98);function woo_remove_tab( $tabs ) {unset( $tabs['description'] );unset( $current_tabs['reviews'] );unset( $current_tabs['additional_information'] );return $tabs; /* return all other tabs */}