Hide empty tabs EXCEPT reviews
-
Hi Tracy, the yikes code snippet I’m using to hide empty Custom Product Tabs is below. It works great, but also hides empty Product Review tabs. Is there a modified snippet for that will hide empty Custom Product Tabs but still show empty Review tabs?
Thanks, Tom
// Remove Empty Tabs
add_filter( ‘woocommerce_product_tabs’, ‘yikes_woo_remove_empty_tabs’, 20, 1 );function yikes_woo_remove_empty_tabs( $tabs ) {
if ( ! empty( $tabs ) ) {
foreach ( $tabs as $title => $tab ) {
if ( empty( $tab[‘content’] ) && strtolower( $tab[‘title’] ) !== ‘description’ ) {
unset( $tabs[ $title ] );
}
}
}
return $tabs;
}
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Hide empty tabs EXCEPT reviews’ is closed to new replies.