Home › Forums › WoodMart support forum › Conditionally show product tab › Reply To: Conditionally show product tab
July 5, 2019 at 5:49 pm
#131516
newsprince
Participant
1st. Install this plug-in
https://wordpress.org/plugins/code-snippets/
2nd. Create a new snippet and paste the following code:
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
if ( has_term( array('human-health'), 'product_cat') ){
unset( $tabs['additional_information'] ); // Remove the additional information tab
//unset( $tabs['woodmart_custom_tab'] ); // Remove the custom information tab
}
return $tabs;
}
Now on category human health the tab will not be shown.