• Hello,

    This plugin needs to be updated to work with the current version of EDD Mailchimp. Here is a partial fix for the part that does the Subscribing.

    wp-content/plugins/easy-digital-downloads-free-download/edd-fd.php

    Replace this:

    if(function_exists('eddmc_check_for_email_signup')){
    	eddmc_check_for_email_signup($_POST, $user_info);
    }

    with

    if( class_exists("EDD_MailChimp")  ){
        $my_mc = new EDD_MailChimp( 'mailchimp', 'Mail Chimp' );
        $my_mc->subscribe_email($user_info);
    }

    This will Subscribe the user to the default List setup in EDD->Settings.

    Thats about all I had time to figure out

    Thanks

    Todd

    https://www.ads-software.com/plugins/easy-digital-downloads-free-download/

  • The topic ‘MailChimp code is obsolete ( partial fix )’ is closed to new replies.