How to avoid the captcha after submitting the form?

  • marlonengenharia
    Asked on October 2, 2015 at 2:12 PM

    Como removo o captcha que aparece após o envio da mensagem?

    não quero que meu formulário seja verificado com captcha.

     
  • BJoanna
    Replied on October 2, 2015 at 4:03 PM

    Sorry for inconvenience this may caused you. 

    It seems that this is happening because you have multiple forms embedded on the same page and form script are having conflict with your website script so it displays the captcha page.

    On your form source code, search "spc" (without quotes, you should be able to get 9 results.) after that append 1 on it e.g. spc1

    Example:

      <script type="text/javascript">

      document.getElementById("si" + "mple" + "_spc1").value = "23190484201950-23190484201950";

      </script>

    <input type="hidden" id="simple_spc1" name="simple_spc1" value="23190484201950" />

    Hope this will help. Let us know if you need further assistance. 

  • BJoanna
    Replied on October 2, 2015 at 4:29 PM

    I forgot to mention, you should use 3 ​*different*​ ID's for 3 different forms, when they are on the same page.

    In other words you need to use spc1 in form 1, spc2 in form 2, and spc3 in form 3.

    Form 1:

    <input type="hidden" id="simple_spc1" name="simple_spc1" value="52664248173661" />

    <script type="text/javascript">

             document.getElementById("si" + "mple" + "_spc1").value = "52664248173661-52664248173661";

    </script>

    Form 2:

    <input type="hidden" id="simple_spc2" name="simple_spc2" value="52664280446660" />

    <script type="text/javascript">

     document.getElementById("si" + "mple" + "_spc2").value = "52664280446660-52664280446660";

     

    </script>

    Form 3:

    <input type="hidden" id="simple_spc3" name="simple_spc3" value="52664417699672" />

    <script type="text/javascript">

     document.getElementById("si" + "mple" + "_spc3").value = "52664417699672-52664417699672";

    </script>