Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Created February 16, 2026 09:04
Show Gist options
  • Select an option

  • Save jmabbas/9df77a31ba30179b03eb99496ae3787f to your computer and use it in GitHub Desktop.

Select an option

Save jmabbas/9df77a31ba30179b03eb99496ae3787f to your computer and use it in GitHub Desktop.
Electro - Single product tabs customize
add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {
if ( isset( $tabs['reviews'] ) ) {
$tabs['reviews']['priority'] = 25;
}
if ( isset( $tabs['accessories'] ) ) {
$tabs['accessories']['priority'] = 30;
}
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment