Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created July 13, 2015 04:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save claudiosanches/bc1190cdc0ac535931a3 to your computer and use it in GitHub Desktop.
Save claudiosanches/bc1190cdc0ac535931a3 to your computer and use it in GitHub Desktop.
WooCommerce - Change variations per page on admin screen
function custom_wc_admin_variations_per_page( $qty ) {
return 20;
}
add_filter( 'woocommerce_admin_meta_boxes_variations_per_page', 'custom_wc_admin_variations_per_page' );
@feanorfelagund
Copy link

Awesome, works great, many thanks!

@cybersholt
Copy link

thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment