Allow switching from NPS to Text field
add_filter(‘frm_switch_field_types’, ‘frm_switch_nps_to_text_field’, 10, 2); function frm_switch_nps_to_text_field( $field_types, $args ) { if ( ‘nps’ === $args[‘type’] ) { $field_types[‘text’] = $args[‘field_selection’][‘text’]; } return $field_types; }Continue reading