Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Created October 1, 2015 21:41
Show Gist options
  • Save mikeyarce/e8bf2769c20ae50fc090 to your computer and use it in GitHub Desktop.
Save mikeyarce/e8bf2769c20ae50fc090 to your computer and use it in GitHub Desktop.
Set the number of Variations to show on a page in the WordPress admin
<?php
function custom_wc_admin_variations_per_page( $qty ) {
return 999;
}
add_filter( 'woocommerce_admin_meta_boxes_variations_per_page', 'custom_wc_admin_variations_per_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment