Change item name

add_filter( ‘rest_prepare_frm_entries’, ‘change_item_name’, 10, 3 ); function change_item_name( $response, $item, $request ) { if ( isset( $response->data[‘name’] ) ) { $response->data[‘name’] = ‘place here the new name of the item’; } return $response; }Continue reading

Change email field value

add_filter( ‘frm_editing_entry_by_csv’, ‘change_email_field_value’ ); function change_email_field_value( $entry_id, $values ) { if ( $entry_id === 10 ) { $email_field_id = ‘1234’; // Replace this value with the id of the field you need to change $new_value = ‘place value here’; $values[‘item_meta’][…Continue reading

Calculate total time inside a repeater

add_filter(‘frm_validate_field_entry’, ‘set_custom_repeating_val’, 10, 4); function set_custom_repeating_val($errors, $posted_field, $posted_value, $args){ if ( $posted_field->id == 5847 ) {// Please replace 5847 with the ID of your repeater field $field_to_change = 5846 ; // change 5846 to the ID of the field that…Continue reading

Modify time

add_action( ‘frm_display_form_action’, ‘ff_enforce_single_daily_entry’, 8, 3 ); function ff_enforce_single_daily_entry( $params, $fields, $form ) { global $user_ID; remove_filter( ‘frm_continue_to_new’, ‘__return_false’, 50 ); if ( ‘123’ === $form->id && ! is_admin() ) { //replace 123 with the id of the form you are…Continue reading

Move description for checkbox/radio field

add_filter(‘frm_custom_html’, ‘frm_move_field_description’, 20, 2); function frm_move_field_description( $default_html, $field_type ) { $start_description = ‘[if description]’; $end_description = ‘[/if description]’; $description_start_pos = strpos( $default_html, $start_description ); $description_end_pos = strpos( $default_html, $end_description ); if ( $description_start_pos === false || $description_end_pos === false )…Continue reading

Populate with uploaded image path

add_filter( ‘frm_filtered_lookup_options’, ‘change_lookup_options’, 10, 2 ); function change_lookup_options( $options, $args ) { if ( $args[‘field’]->id === ’25’ ) { // change 25 to the id of the field in the other form foreach ( $options as $k => $option )…Continue reading

Set the default value of a dropdown

add_filter( ‘frm_get_default_value’, ‘my_custom_default_value’, 10, 3 ); function my_custom_default_value( $new_value, $field, $is_default ) { if ( $field->type === ‘select’ && $field->id == ’25’ && $is_default ) { //change 25 to the ID of the field $default_value = array( ‘label’ => ‘Custom…Continue reading

Count number of edits

add_filter( ‘frm_setup_edit_fields_vars’, ‘frm_edit_counter’, 20, 4 ); function frm_edit_counter( $values, $field, $entry_id ) { if ( intval( $field->id ) === 12283 && ! FrmAppHelper::is_admin() ) { //Replace 12283 with your field ID $values[‘value’] = intval( $values[‘value’] ) + 1; } return…Continue reading