Auto-populate address field for current user

add_filter(‘frm_get_default_value’, ‘auto_populate_address_field’, 10, 2); function auto_populate_address_field( $new_value, $field ) { if ( $field->id == 250 ) { //change 250 to the ID of the field you want to autopopulate global $wpdb; $user = wp_get_current_user(); $get_field_id = ‘256’; $get_field = FrmField::getOne(…Continue reading

Auto-populate address field by passed entry ID

add_filter( ‘frm_get_default_value’, ‘auto_populate_address_field’, 10, 2 ); function auto_populate_address_field( $new_value, $field ) { if ( $field->id == 135 ) { //change 135 to the ID of the field you want to autopopulate if ( isset( $_GET[‘pass_entry’] ) && $_GET[‘pass_entry’] !== ”…Continue reading

Show Removed Option

add_filter(‘frm_setup_edit_fields_vars’, ‘show_removed_options’, 25, 2); function show_removed_options( $values, $field ) { if ( FrmAppHelper::is_admin_page(‘formidable’) || empty( $values[‘value’] ) ) { return $values; } if ( in_array( $field->type, array( ‘select’, ‘radio’, ‘checkbox’ ) ) ) { if ( ! in_array( $values[‘value’], $values[‘options’]…Continue reading

Copy field value

add_filter(‘frm_setup_edit_fields_vars’, ‘frm_copy_field_value_before_edit’, 20, 3); function frm_copy_field_value_before_edit( $values, $field, $entry_id ) { if ( $field->id == 171 ) { //Replace 171 with the field ID of the field that you want to store the original entry in // If on the…Continue reading

Round robin assignments

add_filter( ‘frm_validate_field_entry’, ‘frm_set_value_based_on_order’, 15, 3 ); function frm_set_value_based_on_order( $errors, $posted_field, $posted_value ) { if ( $posted_field->id == 175 ) { //change 175 to the ID of your group name field $group_id = $_POST[‘item_meta’][174] % 2;//change 174 to your auto_id field…Continue reading

Change the page parameter

add_filter( ‘frm_prev_page_link’, ‘change_pagination_link’, 10, 2 ); add_filter( ‘frm_first_page_link’, ‘change_pagination_link’, 10, 2 ); add_filter( ‘frm_page_link’, ‘change_pagination_link’, 10, 2 ); add_filter( ‘frm_last_page_link’, ‘change_pagination_link’, 10, 2 ); add_filter( ‘frm_next_page_link’, ‘change_pagination_link’, 10, 2 ); function change_pagination_link( $link, $atts ) { if ( $atts[‘view’]->ID ===…Continue reading

Automatically update a field in another form

add_action(‘frm_after_create_entry’, ‘link_fields’, 30, 2); add_action(‘frm_after_update_entry’, ‘link_fields’, 10, 2); function link_fields($entry_id, $form_id){ if($form_id == 113){//Change 113 to the ID of the first form global $wpdb; $first_field = $_POST[‘item_meta’][25]; //change 25 to the ID of the field in your first form $user…Continue reading

Update or create another entry

add_action(‘frm_after_create_entry’, ‘update_or_create_entry’, 30, 2); add_action(‘frm_after_update_entry’, ‘update_or_create_entry’, 10, 2); function update_or_create_entry($entry_id, $form_id){ if ( $form_id == 430 ) {//Change 430 to the ID of Form A global $wpdb; $form2 = ‘480‘;//Change 480 to the ID of Form B //Get user and…Continue reading

Remove Extra Address Columns on Export

add_filter( ‘frm_csv_columns’, ‘remove_extra_address_columns’, 10, 2 ); function remove_extra_address_columns( $headings, $form_id ) { if ( $form_id == 568 ) { //change 568 to your Form ID $address_field_id = ‘3855’; //change 3855 to your Address Field ID unset( $headings[$address_field_id . ‘_line1’] );…Continue reading