How to Change the Import and Export Limits in WPSyncSheets for Gravity Forms?
If you’re facing issues related to sync or import limits — or if you simply want to adjust these limits based on your server’s configuration — you can easily do so using filters.
Add the following filters to your theme’s functions.php file to customize the limits.
Change the Entry Sync Limit
The example below sets the entry sync limit to 200:
function update_sync_limit(){
return 200;
}
add_filter( 'wpssg_entry_sync_limit', 'update_sync_limit' );
Change the Entry Import Limit
The example below sets the entry import limit to 100:
function update_import_limit(){
return 100;
}
add_filter( 'wpssg_entry_import_limit', 'update_import_limit' );