How to remove Woocommerce Tabs

0 Comments

Last updated on

On your dashboard, go to Appearance > Editor

Choose “functions.php” to be edited

Add this below snippet code.

function woo_remove_product_tabs($tabs) {

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

add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98);

 

Leave a Comment