Skip to content

Instantly share code, notes, and snippets.

@hslaszlo
Forked from jameskoster/functions.php
Created February 23, 2018 15:49
Show Gist options
  • Save hslaszlo/f5f45f4acd162957788fd7c9d655637d to your computer and use it in GitHub Desktop.
Save hslaszlo/f5f45f4acd162957788fd7c9d655637d to your computer and use it in GitHub Desktop.
WooCommerce - Reorder product tabs
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment