Home Forums WoodMart support forum Change order of tabs on product page Reply To: Change order of tabs on product page

#112838

radekcho
Participant

Too much tab 😉 It’s working now. The correct code is:

/**
* Reorder product data tabs
*/
add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
function woo_reorder_tabs( $tabs ) {

$tabs[‘description’][‘priority’] = 5; // Description first
$tabs[‘woodmart_custom_tab’][‘priority’] = 10; // WooDmart Custom second
$tabs[‘woodmart_additional_tab’][‘priority’] = 15; // WoodMart Additional information third

return $tabs;
}