Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Created May 4, 2020 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save andrewlimaza/57d2f213275d9c8bb331a1997a60ecda to your computer and use it in GitHub Desktop.
Save andrewlimaza/57d2f213275d9c8bb331a1997a60ecda to your computer and use it in GitHub Desktop.
Disable Reporting For Paid Memberships Pro
<?php
/**
* Remove tracking for Paid Memberships Pro on high traffic sites.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
remove_action("wp", "pmpro_report_login_wp_visits"); // Visits
remove_action("wp_head", "pmpro_report_login_wp_views"); // Views
remove_action("wp_login", "pmpro_report_login_wp_login", 10 ,2); // Logins
@renduples
Copy link

Thanks Andrew

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment