• Resolved danielb66

    (@danielb66)


    Two Pronged problem:

    The submit action doesn’t work on my side widget. Mailchimp is connected. nothing in the plugin debugger with everything selected., Upon browser inspection i see:

    cybersecurityscholar.com/:1 An invalid form control with name='EMAIL' is not focusable.

    The second is labels are not showing on the page despite this code (perhaps a theme issue?)

    <p>
      <label>Email address</label>
        <input type="email" name="EMAIL" placeholder="Email Address"
               required="">
    </p>

    Many thanks for any help provided.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Lap

    (@lapzor)

    When looking at the source of the form I see the email field twice, one time visible, and one time hidden. The form can’t be submitted because the email field (the hidden one) is a required field.

    I see some CSS code in your theme that is specifically targeting our plugin and hiding the labels:

    .mc4wp-form label {
    display: none;
    }

    Try to remove the second field from the form on MC4WP > Form > Fields.
    And maybe ask your theme developer to not hide the form labels.

    Kind regards,

    Thread Starter danielb66

    (@danielb66)

    That worked. Thank you. Mildly embarrassed i didn’t catch that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Issue with MC4WP form’ is closed to new replies.