Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created December 11, 2014 20:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasgriffin/525dc80a20cb69c7e8bf to your computer and use it in GitHub Desktop.
Save thomasgriffin/525dc80a20cb69c7e8bf to your computer and use it in GitHub Desktop.
Turn off tracking in OptinMonster.
<?php
add_filter( 'optin_monster_data', 'tgm_om_turn_off_tracking' );
function tgm_om_turn_off_tracking( $data ) {
$data['tracked'] = true;
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment