Created
July 30, 2020 12:46
-
-
Save madeincosmos/50debda52e3e9ed3ded6f1683942fa6f to your computer and use it in GitHub Desktop.
Reduce batch size for Square sync
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( 'wc_square_sync_max_objects_to_retrieve', 'custom_reduce_square_batch_size' ); | |
function custom_reduce_square_batch_size( $max ) { | |
return 200; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment