Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
- function woo_reorder_tabs( $tabs ) {
- $tabs['reviews']['priority'] = 5; // Reviews first
- $tabs['description']['priority'] = 10; // Description second
- return $tabs;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement