Replace field options
add_filter(‘frm_setup_new_fields_vars’, ‘frm_set_checked’, 20, 2); function frm_set_checked($values, $field){ if($field->id == 125){//Replace 125 with the ID of your field $values[‘options’] = array(‘Option 1‘, ‘Option 2‘); //Replace Option1 and Option2 with the options you want in the field } return $values; }Continue reading