Support » Plugin: MailChimp List Subscribe Form » checkbox info not sent to mailchimp list

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello Marco,

    I am having the same problem as you. I found however that if you use a drop down or radio button the group information will carry over.

    The only issue is you can only select one option. For your form that may workout.

    Please post if you find a solution to the checkboxes not carrying over as will I.

    Thanks,

    Eric

    Hi,

    I run into something similar, and found out my problem was related to this part in mailchimp.php (line 1035)

    This switch only had a case for ‘checkbox’ but I added ‘checkboxes’ in order to get the $_POST[‘interests’] send to MailChimp

    case 'checkbox':
    case 'checkboxes':
    if (isset($_POST['interests'])) {
    foreach ($_POST['interests'] as $i => $nothing) {
    $merge['INTERESTS'] .= str_replace(',', '\,', $i).',';}
    break;

    Hi Ruud@joyo,

    Your solution fixed my problem with the checkboxes.

    AWESOME!

    Thank you very much for posting this info.

    Great stuff ruud@jojo, helped me too.

    However, i seem to only be able to get one Interest Group read out by the plugin although I’ve setup two.

    Further, adding a Multiple Choice field for example (as a workaround to the problem described above) the plugin/widget shows it as text input.

    Any help on this would be super!

    Chris

    I think I read a comment somewhere by the plugin author that currently only 1 interest group is supported by the author.

    I hope he can check this (checkboxes) solution and perhaps update the code in the next release, i just don’t like having modified files in my svn:externals 🙂

    thanks again, at least we know that its nothing to do with the install.

    i just created all checkboxes i wanted in one group. looks a bit funny, but im not designing right now anyway and can wait for a solution

    c

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘checkbox info not sent to mailchimp list’ is closed to new replies.