Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created September 23, 2025 10:25
Show Gist options
  • Select an option

  • Save plugin-republic/b998601330bc4b7f259a64c5ab96a259 to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/b998601330bc4b7f259a64c5ab96a259 to your computer and use it in GitHub Desktop.
<?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