Skip to content

Instantly share code, notes, and snippets.

@imuhammadshoaib
Forked from woogists/wc-reorder-tabs.php
Created August 17, 2020 15:50
Show Gist options
  • Save imuhammadshoaib/e297a7dbb808c16e7056096d85ef22e6 to your computer and use it in GitHub Desktop.
Save imuhammadshoaib/e297a7dbb808c16e7056096d85ef22e6 to your computer and use it in GitHub Desktop.
[Frontend Snippets][Editing product data tabs] Reordering product data tabs
/**
* Reorder product data 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