I am trying to dynamically populate the Body field for post data. I have followed the instructions here: http://www.gravityhelp.com/documentation/page/Gform_field_value_$parameter_name - but there is no documentation as to what field you should use for the gform_field_value. Below is the codes I have tried, but nothing works. i have checked off Allow field to be populated dynamically and the name of my parameter is "casedescription". Any ideas?
Is textarea correct?
add_filter("gform_field_value_textarea", "populate_casedescription");
function populate_casedescription($value){
return "This is incredible software if this works";
}
OR I tried this:
add_filter("gform_field_value_body", "populate_casedescription");
function populate_casedescription($value){
return "This is incredible software if this works";
}