Creating Advanced Forms with Gravity Forms (WordCamp San José 2018)
Gravity Forms is a robust plugin allowing you to create forms of any kind for your WordPress site. We will walkthrough some of the most powerful features that often go unnoticed including conditional logic, dynamic population, merge tags and more.
to create Advanced Forms for your WordPress site Email Notifications File Uploads Multi-Page Forms Save and Continue Payment Forms Limit & Schedule Forms Post Creation Calculations
settings add_filter( ‘gform_field_value', ‘my_custom_population_function’, 10, 3 ); function my_custom_population_function( $value, $field, $name ) { return ‘dynamic value’; } Provide a parameter name for field. Add in Hook Code:
settings add_filter( ‘gform_field_value_why', ‘my_custom_population_function’, 10, 3 ); function my_custom_population_function( $value, $field, $name ) { return ‘dynamic value’; } Provide a parameter name for field Add in Hook Code: