Viewing 1 replies (of 1 total)
  • Thread Starter wrowlands

    (@wrowlands)

    Here is the code from Mike Challis that fixed this matter:

    edit the \contact-form-newsletter\ plugin

    $fields = array(
     'form_id' => $_POST['si_contact_form_id'],  'email_address' => (is_email(@$_POST['si_contact_email']) ?
    @$_POST['si_contact_email'] : false),
     'first_name' => $_POST['si_contact_f_name'],  'middle_name' => (isset($_POST['si_contact_mi_name']) ?
    @$_POST['si_contact_mi_name'] : @$_POST['si_contact_m_name']),  'last_name' => @$_POST['si_contact_l_name'], 'company_name' => @$_POST['si_contact_ex_field1'],
        );

    Thanks Mike! You are the best.

Viewing 1 replies (of 1 total)
  • The topic ‘Company name to Constant Contact list’ is closed to new replies.