Created
July 13, 2015 04:20
-
-
Save claudiosanches/bc1190cdc0ac535931a3 to your computer and use it in GitHub Desktop.
WooCommerce - Change variations per page on admin screen
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
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' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome, works great, many thanks!