Skip to content

Instantly share code, notes, and snippets.

@verygoodplugins
Created March 11, 2021 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save verygoodplugins/21be694288804bc2951c77b15277a64d to your computer and use it in GitHub Desktop.
Save verygoodplugins/21be694288804bc2951c77b15277a64d to your computer and use it in GitHub Desktop.
Limit the number of tags loaded from the CRM to 1000
<?php
// Limit number of tags loaded. More than 1000 tags can cause slowness in the interfaces
add_filter( 'wpf_set_setting_available_tags', function( $tags ) {
return array_slice( $tags, 0, 1000 );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment