Hi @charlenechin91,
Our plugin doesn’t integrate with the default WooCommerce tabs but you have a few options.
If you’re trying to not use the Description tab, I would recommend leaving it empty. It will not appear if it’s empty.
You can turn off the Reviews tab on a product by disabling reviews (This is found in the Reviews Advanced section of the product edit screen).
You can’t turn off the Additional Information tab as this is automatically created when your product has “weight, dimensions or attributes.”
However, using some custom code, you can disable all of these tabs. Here is an example of custom code that will remove all three default WooCommerce tabs.
// Remove Tabs
add_filter( 'woocommerce_product_tabs', 'yikes_woo_remove_tabs', 20, 1 );
function yikes_woo_remove_tabs( $tabs ) {
// Remove the description tab
if ( isset( $tabs['description'] ) ) {
unset( $tabs['description'] );
}
// Remove the additional information tab
if ( isset( $tabs['additional_information'] ) ) {
unset( $tabs['additional_information'] );
}
// Remove the reviews tab
if ( isset( $tabs['reviews'] ) ) {
unset( $tabs['reviews'] );
}
return $tabs;
}
Cheers,
Kevin.