Hi Guys,
I would like to remove the WooCommerce tabs on my product pages but the recommended way of doing it doesn’t work:
——
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $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;
}
————-
Can you provide an alternate way?
I would prefer a non-css waym but if css is the only way to go then that would be ok ๐