Created
September 23, 2025 10:25
-
-
Save plugin-republic/b998601330bc4b7f259a64c5ab96a259 to your computer and use it in GitHub Desktop.
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
| <?php | |
| /** | |
| * Set the order of attributes in the Better Variations grid | |
| */ | |
| function demo_swap_attributes_order( $order, $product_id ) { | |
| return array( 'pa_colour', 'pa_size' ); | |
| } | |
| add_filter( 'wcbvp_attribute_order', 'demo_swap_attributes_order', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment