Created
September 25, 2024 15:59
-
-
Save themightymo/d84dde6df9a5449205305f90dd082b0d to your computer and use it in GitHub Desktop.
Show more Google Analytics accounts in the Beehive Pro plugin's dropdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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