Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Last active May 13, 2021 04:46
Show Gist options
  • Select an option

  • Save wbcomdev/e9e148084a355a16fbc742169c1cf53a to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/e9e148084a355a16fbc742169c1cf53a to your computer and use it in GitHub Desktop.
/**
* Reorder product data tabs.
*/
function wb_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;
}
add_filter( 'woocommerce_product_tabs', 'wb_woo_reorder_tabs', 98 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment