Set the default value of a field
add_filter(‘frm_get_default_value’, ‘my_custom_default_value’, 10, 3); function my_custom_default_value( $new_value, $field, $is_default ) { if ( $field->id == 25 && $is_default ) { //change 25 to the ID of the field $new_value = ‘default’; //change ‘default’ to your default value } return $new_value;…Continue reading