Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JarrydLong/c20f77a4d41237fab49c8b96b9197b7e to your computer and use it in GitHub Desktop.
Save JarrydLong/c20f77a4d41237fab49c8b96b9197b7e to your computer and use it in GitHub Desktop.
Change PMPro to only track visits for logged in users.
/**
* Change PMPro to not track visits at all
* Add this code into a custom plugin or code snippet.
*/
function my_pmpro_report_login_wp_visits_only_for_users() {
remove_action( 'wp', 'pmpro_report_login_wp_visits' );
}
add_action( 'init', 'my_pmpro_report_login_wp_visits_only_for_users' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment