Skip to content

Instantly share code, notes, and snippets.

@haroldparis
Created July 5, 2013 21:28
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 haroldparis/5937377 to your computer and use it in GitHub Desktop.
Save haroldparis/5937377 to your computer and use it in GitHub Desktop.
WooCommerce : Newsletter Subscription Plugin on "single optin" mode for Mailchimp - Find the "$retval = $api->listSubscribe( $listid, $email, $vars );" line and modify accordingly adding the $double_optin=false and $send_welcome=false to listSubscribe(). Enjoy !
<?php
// Adding the $double_optin=false and $send_welcome=false parameters for single optin and no welcome email message
$retval = $api->listSubscribe( $listid, $email, $vars, $double_optin=false, $send_welcome=false );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment