Tuesday 19 May 2015

How to re-order the product tabs?

Change it as you want it and add to the functions.php, but here is a snippet to put the reviews first, description second and additional info third:

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
$tabs['additional_information']['priority'] = 15; // Additional information third
 
return $tabs;
}

No comments:

Post a Comment

Popular Articles