How to change the product tab order
-
Hi all.
I have this code that I have adpted from the Woo themes documentation./////Tabs order add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 ); function woo_reorder_tabs( $tabs ) { $tabs['tab-custom-tab-first']['priority'] = 5; // First $tabs['tab-vendor']['priority'] = 10; // Second $tabs['tab-additional_information']['priority'] = 15;// Third $tabs['tab-reviews']['priority'] = 20; // Fourth return $tabs; }
Here’s my page
https://www.thewattletree.com/product/emmelle-candles/
When I place the code on line it gives up errors.
Can anyone help with this?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to change the product tab order’ is closed to new replies.