Silver Muru > Blog > 2017 > August

Woocommerce: how to remove product tabs?

How to remove product tabs in single product view?

PHP
8 lines
1
2
3
4
5
6
7
8
add_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 */
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX