Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save madeincosmos/50debda52e3e9ed3ded6f1683942fa6f to your computer and use it in GitHub Desktop.
Save madeincosmos/50debda52e3e9ed3ded6f1683942fa6f to your computer and use it in GitHub Desktop.
Reduce batch size for Square sync
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