Site Overlay

Remove additional information, product description, and product review from the WooCommerce product page

Add the following command, with a sales space at the bottom of the view> theme editor> functions.php file.

function woo_remove_product_tab($tabs) {

unset( $tabs['description'] );      		Remove the description tab
unset( $tabs['reviews'] ); 					Remove the reviews tab
unset( $tabs['additional_information'] );  	Remove the additional information tab

return $tabs;
 
}
add_filter('woocommerce_product_tabs', 'woo_remove_product_tab', 98);