Showing posts with label Woocommerce addons. Show all posts
Showing posts with label Woocommerce addons. Show all posts

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;
}

Connect your eBay store to your WooCommerce shop with ease

Using this easy yet flexible plugin, you can link up your eBay store with your WooCommerce shop as well as benefit from all the added features, including verifying items and getting listing fees before actually listing them. WP-Lister for eBay plugin

WP-Lister for eBay Download

Popular Articles