Created
September 20, 2017 09:07
-
-
Save tankbar/ac53680705d6e2d6e434a5a2f3475c7f to your computer and use it in GitHub Desktop.
Increase variations per page in WooCommerce admin tab
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
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