Skip to content

Instantly share code, notes, and snippets.

@woogist
Created October 15, 2014 10:04
Show Gist options
  • Save woogist/5a91a3bbc39e530b7ae3 to your computer and use it in GitHub Desktop.
Save woogist/5a91a3bbc39e530b7ae3 to your computer and use it in GitHub Desktop.
Increase the import limit for WooCommerce Product CSV Import Suite
<?php
/**
* Increase the import limit for WooCommerce Product CSV Import Suite
*/
add_filter( 'woocommerce_csv_import_limit_per_request', create_function( '', 'return 20;' ) ); //Increase limit to 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment