Hello,
I am using Really Simple Captcha plugin for my captcha field.
How ever I can't seem change the default value using 'gform_pre_render'
// FORM FOOTER CAPTCHA
add_filter('gform_pre_render', 'add_captcha_value');
function add_captcha_value($form){
$_POST['input_4'] = 'Please enter captcha';
return $form;
}
See form source... http://i.imgur.com/10Pu6.png
I cant get any field pre-rendering to apply?
Also how can I get this hook to only apply to my footer form?
Any help would be much appreciated, thank you for your time.
Josh