Do you offer offer options for type of Captcha? I hate the scrambled word type and want to find a form program that offers an alternative, either 1+1= question type, or really anything. Thanks!
Do you offer offer options for type of Captcha? I hate the scrambled word type and want to find a form program that offers an alternative, either 1+1= question type, or really anything. Thanks!
You could actually setup the 1+1 piece on your own using conditional logic on the submit button. So you could have a number field with a description (instructions 1+1=?) and then set the conditional logic to not show the submit button unless the value of that field is 2.
We are in conversation with Gravity Forms folks on the possibility of making our image-identification CAPTCHAs be available as an Add-On.
Demo - http://www.picatcha.com/pixcaptcha
You could try our version of the plugin here - http://wordpress.org/extend/plugins/picatcha-for-gravity-forms/
If you have the Really Simple Captcha plugin installed, you'll see that as an option to the reCaptcha field in Gravity Forms. Part of that is a random "math challenge" option that will do what you're asking.
repeating jessiemary question i need a simple 2+2 simple question to ask to avoid spam...
the two answers;
1) conditional logic (not feasible)
2) Really Simple Captcha plugin is not useful either moreover i am unable to use it.
is there any simple chunk of code that i place in the plugin to achieve the goal?
otherwise it will be difficult for me.
looking for best answer. thanks in advance
best regards,
The Really Simple Captcha plugin includes a math challenge (simple 2+2) - why are you unable to use it?
We have a picatcha add-on as well, which was developed after this topic was started:
Learn more: http://picatcha.com/
Our add-on: http://www.gravityforms.com/add-ons/picatcha/
We also have an anti-spam honeypot built in, and if your site uses Akismet, Gravity Forms can filter entries with Akismet as well.
thanks for the answer;
i have added a simple jquery code, no need of plugin etc. just add a numeric field activated required checkbox;
name it e.g. "2+2=? enter answer to prevent spam"
then add following code to header in document.ready function to achieve this.
jQuery("#gform_submit_button_1").click(function(){
var fval = $("#input_1_6").val(); //check out field id in my case its input_1_6
if(fval == 4 ) //if value is 4 simple submit
gform_1.submit();
else
{
$("#input_1_6").val(""); //if other input just empty the field and submit it
gform_1.submit(); //provide the error 'Invalid answer'
}
return false;
});
and you are done with 2+2=4 captcha....chill :-)
thanks admin...i think this small hack will be helpful for those who don't want to use plugin...
Thanks for posting your solution.