Tabs re-order not working
-
I was trying to re-order tabs, and I’ve copied the code from your site, but it’s not working.
First I copied the code for adding tabs, and it worked. Next I want to re-order the tabs and I copied the same code as shown on your site, but it didn’t work.
See my code:
———————————————————————————————————————–/**
* 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[‘specifications’][‘priority’] = 10; // Specifications second
$tabs[‘reviews’][‘priority’] = 15; // Reviews thirdreturn $tabs;
}————————————————————————————————————————-
See my screenshot– https://prntscr.com/ueo0xz
What can I do?
Waiting to hear from you soon.
RegardsThe page I need help with: [log in to see the link]
- The topic ‘Tabs re-order not working’ is closed to new replies.