Created
December 11, 2014 20:00
-
-
Save thomasgriffin/525dc80a20cb69c7e8bf to your computer and use it in GitHub Desktop.
Turn off tracking in OptinMonster.
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
<?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