Created
February 16, 2026 09:04
-
-
Save jmabbas/9df77a31ba30179b03eb99496ae3787f to your computer and use it in GitHub Desktop.
Electro - Single product tabs customize
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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