Skip to content

Commit

Permalink
MailChimp for Memberships: filter amount of synced lists
Browse files Browse the repository at this point in the history
  • Loading branch information
simonporter007 committed Apr 3, 2019
1 parent d23b126 commit 512d564
Showing 1 changed file with 15 additions and 0 deletions.
@@ -0,0 +1,15 @@
<?php // only copy if needed!

/**
* Adds the "count" parameter to the mailchimp API request.
*
* @param array $params associative array of request parameters
* @return array updated params
*/
function sv_wc_memberships_mailchimp_api_request_params( $params ) {

$params['count'] = 50;

return $params;
}
add_filter( 'wc_memberships_mailchimp_api_request_params', 'sv_wc_memberships_mailchimp_api_request_params', 10 );

0 comments on commit 512d564

Please sign in to comment.