Advertisement
fahimmurshed

How to set "Review" tab as a default (active) tab

Aug 2nd, 2022
1,259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
  2. function woo_reorder_tabs( $tabs ) {
  3.     $tabs['reviews']['priority'] = 5;           // Reviews first
  4.     $tabs['description']['priority'] = 10;      // Description second
  5.     return $tabs;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement