Created
October 1, 2015 21:41
-
-
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
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 | |
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