wpgenie

reorder WooCommerce tabs on single product

Oct 3rd, 2022
1,116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. // reorder WooCommerce tabs on single product, typo is fine!
  2.  
  3. add_filter( 'woocommerce_product_tabs', 'reordered_tabs', 98 );
  4. function reordered_tabs( $tabs ) {
  5.     $tabs['description']['priority'] = 2;
  6.     $tabs['simle_auction_history']['priority'] = 1;
  7.  
  8.     return $tabs;
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment