Remove all single product tabs

How to remove all tabs from a single product page.

add_filter( 'woocommerce_product_tabs', 'jkpagency_remove_all_single_product_tabs', 9999, 1 );

function jkpagency_remove_all_single_product_tabs( $tabs ) {
	// Removes all single product tabs
	$tabs = array();
	return $tabs;
}

More to come soon.

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
Scroll to Top