-
-
Save jamiemitchell/3caaab80c3356043a8b71aaa59ae6249 to your computer and use it in GitHub Desktop.
WooCommerce - Reorder product tabs
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 ) { | |
| $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