Skip to content

Instantly share code, notes, and snippets.

@tankbar
Created September 20, 2017 09:07
Show Gist options
  • Save tankbar/ac53680705d6e2d6e434a5a2f3475c7f to your computer and use it in GitHub Desktop.
Save tankbar/ac53680705d6e2d6e434a5a2f3475c7f to your computer and use it in GitHub Desktop.
Increase variations per page in WooCommerce admin tab
add_filter( 'woocommerce_admin_meta_boxes_variations_per_page', 'override_increase_variations_per_page' );
function override_increase_variations_per_page() { 
return 50; 
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment