Quote Originally Posted by delia View Post
ahem, have problem with the sidebox working fine but the create account form does not. Nothing is getting to mail chimp: The mailchimp log file says Unable to load listSubscribe()!
Code=250
Msg=FNAME must be provided - Please enter a value

I could have sworn I did this correctly. What in the world did I screw up?
Hi Delia I have the same issue

I can solve that error

You are collecting the subscriber first and last names correct?

basically it is wanting the first name parameter, which you need to add in the

/includes/modules/your-template/create_account

so this (around line 339)

Code:
//--- added mailchimp
   if ((int)$newsletter == 1) { 
       mailchimp_add($email_address, $email_format);
  }
//--- End mailchimp
becomes


Code:
//--- added mailchimp
   if ((int)$newsletter == 1) { 
       mailchimp_add($email_address, $firstname, $lastname, $email_format);
  }
//--- End mailchimp
Unfortunately while this stops the error, it doesn't seem to add the user to mailchimp (or at least I am not receiving an email confirmation from mailchimp), I can't actually access mailchimp at the moment to check.