Skip to content

Instantly share code, notes, and snippets.

@nmedia82
Created April 25, 2018 04:30
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 nmedia82/292ca83ab3171d121832252e37696206 to your computer and use it in GitHub Desktop.
Save nmedia82/292ca83ab3171d121832252e37696206 to your computer and use it in GitHub Desktop.
Change admin admin to get WooConvo notification
// Add this code at theme's function.php at bottom
add_filter('wooconvo_message_receivers', 'wooconvo_change_admin_email', 10, 2)
function wooconvo_message_receivers($receivers, $is_admin) {
if( $is_admin ) {
$receivers = array('your@email.com'); // add more email if need in array
}
return $receivers;
}
@alfonsocecca
Copy link

not works

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