Reply 219223 to: Tabs Order

Avatar: Rose Tyler
Rose Tyler
Support staff
August 16, 2019 at 07:51

Hello,

This code can be added in functions.php of the child theme:

add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {

	$tabs['reviews']['priority'] = 5;			// Reviews first
	$tabs['description']['priority'] = 10;			// Description second

	return $tabs;
}

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.