Skip to content

Instantly share code, notes, and snippets.

@themightymo
Created September 25, 2024 15:59
Show Gist options
  • Save themightymo/d84dde6df9a5449205305f90dd082b0d to your computer and use it in GitHub Desktop.
Save themightymo/d84dde6df9a5449205305f90dd082b0d to your computer and use it in GitHub Desktop.
Show more Google Analytics accounts in the Beehive Pro plugin's dropdown
// Show more accounts in the Beehive Pro plugin
add_filter( 'beehive_google_analytics_ga4_accounts_page_size', function ( $limit ) {
// Increase the limit to 50
return 100;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment