Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // reorder WooCommerce tabs on single product, typo is fine!
- add_filter( 'woocommerce_product_tabs', 'reordered_tabs', 98 );
- function reordered_tabs( $tabs ) {
- $tabs['description']['priority'] = 2;
- $tabs['simle_auction_history']['priority'] = 1;
- return $tabs;
- }
Advertisement
Add Comment
Please, Sign In to add comment