Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created February 7, 2014 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasgriffin/8869849 to your computer and use it in GitHub Desktop.
Save thomasgriffin/8869849 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'optinmonster_output', 'tgm_om_hide_optins' );
function tgm_om_hide_optins( $optins ) {
// Return an empty array if no user is logged in. Change this to your logic for determining where customers come from.
if ( ! is_user_logged_in() ) {
return array();
}
// Return the potentially modified optins.
return $optins;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment