connecting user meta with Gravity Forms filter
-
Greetings, ABM.
I have been back and forth with gravity forms for three days now. Not making much headway.
On my custom form, there are four items (check box, two dropdown menus, and a text box). The text box can handle merge tags and I can pull the info from the new profile fields I set up with your plugin, but the dropdown and checkbox don’t work that way.
Gravity Forms told me I need to set up a filter and gave me a basic start. I’ve got it this far:
‘<?php
add_filter(“gform_field_value_familyactivity”, “populate_family_activities”);
function populate_family_activities($value) {
// THIS AREA HERE I DO NOT KNOW HOW TO POPULATE. I KNOW IT WILL INVOLVE THE “KEY” FROM THE CHECKBOX MENU I CREATED (which is for family activities) BUT I AM CLUELESS AS TO WHAT DATA I NEED OR HOW TO ARRANGE IT.
return $value;
}
?>’Any help? Is this outside your usual support? Can you at least give me a point in the right direction? I am dangerously close to a deadline and have no idea what to do. Thanks!!!
- The topic ‘connecting user meta with Gravity Forms filter’ is closed to new replies.