Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
just swap them
add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {
$tabs['reviews']['priority'] = 15; // Reviews first
$tabs['description']['priority'] = 10; // Description second
$tabs['additional_information']['priority'] = 5; // Additional information third
return $tabs;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question