I have the following problem. I have a paragraph text box that I want pre-populated within the form. I've added this to my functions.php file, but it isn't working. I've probably got something wrong somewhere!
add_filter("gform_field_value_enquiry", "populate_enquiry"); function populate_enquiry(){ global $post; $post_name = $post->post_title; $enquiry_total = "Please send me more information on" .$post_name. "!"; return $enquiry_total; }
My paragraph text box is ticked to allow dynamic population, and called 'enquiry'.