• Resolved RizB

    (@raizwan)


    Hi there,

    I have three questions.

    1) My popup signup has two required fields, e-mail and a checkbox, like so…

    <input id=”email” name=”Email” required=”required” type=”text” value=”Email Address” />

    <input name=”Disclaimer” required=”required” type=”checkbox” value=”Disclaimer” />

    https://www.theabe.tv/about-us/

    However, when completing the form, validation is only requested for the checkbox. If you check the checkbox, the form can be submitted without an e-mail field being filled. How can I make both fields compulsory?

    2) Also, can you please tell me how I change the subject field of the e-mail I receive – currently I receive this…

    Dgd Scrollbox submit on Australian Business Executive | A Deeper Look at Business & Government

    I want to customize this completely.

    I have added <input name=”subject” type=”hidden” value=”Signup with theabe.tv” /> to my form but this appears to be ignored.

    3) Finally, how can I add more than one recipient of these signup’s under “Send submitted values to email”? I have added two e-mail addresses, separated by a comma, but submitted forms are only sent to the second e-mail address.

    Thank you.

    https://www.ads-software.com/plugins/dreamgrow-scroll-triggered-box/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Eero Hermlin

    (@eero-hermlin)

    Hi

    1) Currently you have:
    ′<input id=”email” name=”Email” required=”required” type=”text” value=”Email Address”>′
    I guess that required will never trigger because you have filled value by default. For checkbox it works, as checkboxes have different logic. As you have html5 page, try this instead (value -> placeholder, type=”text” -> type=”email”):
    ′<input id=”email” name=”Email” required=”required” type=”email” placeholder=”Email Address”>′

    2) It’s not possible in current version.

    3) Sorry, but it doesn’t work with multiple addresses. Using mailing list address would be a workaround.

    Thread Starter RizB

    (@raizwan)

    Thank you for your time and support.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘required="required"’ is closed to new replies.