How to remove submit captcha?

  • amazeballs
    Asked on March 20, 2017 at 5:49 PM

    Hi,

    I have gone through the various threads about this issue but cannot get my form working without captcha on submit.

    I have 2 forms on my site, first one i had the same issue with however I managed to fix but cannot remember what i did!

    Second one, I just can't seem to figure it out. I have following the suggestions in other posts.  My page

    is http://www.susanwalkeronline.com/welcome/ if someone could suggest something.

    Thanks in advance, 

  • jonathan
    Replied on March 20, 2017 at 9:33 PM

    If you publish 2 forms on the same website page it will have issue.

    What I suggest you do is remove first the forms on the website and make sure to publish only 1 form on the same page. If you need to publish another form, it should be on a different page.

    Follow this guide on how to : Adding-a-Form-to-a-Web-Page

    Let us know if this did not resolve the issue.

     

  • amazeballs
    Replied on March 21, 2017 at 5:00 AM

    Thanks for your reply - I will leave it with captsha for the moment and see how it goes.

    I did find a recommendation to use iframe for a second form but that doesn't seem to work for me.

    Thanks anyway :)

     

  • amazeballs
    Replied on March 21, 2017 at 6:38 AM

    If anyone else is facing this issue - the following worked for me to remove the captsha on submission.  Can only get it working with one form on the page though.

     

    """ To resolve this, please replace this (within the source code that you get):

    <input id="simple_spc" type="hidden" value="53154610387151" name="simple_spc">
    <script type="text/javascript">
    document.getElementById("si" + "mple" + "_spc").value = "53154610387151-53154610387151";
    </script>

    to this:

    <input id="simple_spc" type="hidden" value="53154610387151-53154610387151" name="simple_spc">

    As soon as you do, your form should be working - at least per my tests just a minute or two ago.

    Do let us know how it goes and please do note that when ever your make a change to your form, you will need to capture the source code of your form again and re-embed, it, but you will also need to do the same change as above.