Hi,
I tried to change the tab order, to show the review-tab last on the product page.
However, the reviews tab stayed first.
I used the following code:
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
$tabs[‘reviews’][‘priority’] = 20; // WoodMart Additional information third
return $tabs;
}
Is something wrong with this code? What else might be blocking the correct behavior?
Best
LU