Home Forums WoodMart support forum Split: How to change the product tabs order Reply To: Split: How to change the product tabs order

#557206

Luke Nielsen
Keymaster

Hello,

Shipping & Delivery 3rd:

add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {
	 $tabs['wd_additional_tab']['priority'] = 96;

	return $tabs;
}

Paste it into the fucntions.php file in your child theme.

Kind Regards