Skip to content

Instantly share code, notes, and snippets.

@nayemDevs
Last active April 11, 2023 19:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nayemDevs/fadab126b13e851ac543c08139475c4d to your computer and use it in GitHub Desktop.
Save nayemDevs/fadab126b13e851ac543c08139475c4d to your computer and use it in GitHub Desktop.
re-order tab on single product page
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