Answers for "woocommerce PRIORITY tab"

0

woocommerce PRIORITY tab

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;

}
Posted by: Guest on September-27-2021

Browse Popular Code Answers by Language