Run code when user saves a draft

add_action(‘frm_after_create_entry’, ‘frm_after_save_draft’, 30, 2); add_action(‘frm_after_update_entry’, ‘frm_after_save_draft’, 30, 2); function frm_after_save_draft($entry_id, $form_id){ if ( $form_id == 221 ) { //change 221 to the ID of your form if ($_POST[‘frm_saving_draft’] == 1) { // do something here } } }Continue reading

Move and rename files

add_action( ‘frm_after_create_entry’, ‘frm_move_file_and_rename’ ); function frm_move_file_and_rename() { $field_ids = array( 25, 26 ); // change field IDs to the IDs of your file upload fields foreach ( $field_ids as $field_id ) { if ( isset( $_POST[‘item_meta’][ $field_id ] ) )…Continue reading

Change date format

add_filter(‘frm_graph_data’, ‘change_my_graph_date_format’, 10, 2); function change_my_graph_date_format( $data, $atts ) { if ( isset( $atts[‘x_axis’] ) && $atts[‘x_axis’] == ‘created_at’ ) { $wp_date_format = get_option(‘date_format’); $new_format = ‘F d’; for ( $i = 1, $l = count( $data ); $i<$l; $i++…Continue reading

Generate a cumulative graph

add_filter(‘frm_graph_data’, ‘generate_cumulative_graph’, 10, 2); function generate_cumulative_graph( $data, $atts ) { if ( isset( $atts[‘title’] ) && $atts[‘title’] == ‘Cumulative graph’ ) { for ( $i=2, $l=count($data); $i<$l; $i++ ) { $data[ $i ][1]+= $data[ $i-1 ][1]; } } return $data;…Continue reading

Skip if one of two fields is empty

add_filter( ‘frm_skip_form_action’, ‘form_action_conditions’, 10, 2 ); function form_action_conditions( $skip_this_action, $args ) { if ( $args[‘action’]->ID == 115 ) {//replace 115 with your action ID if ( is_object( $args[‘entry’] ) ) { $entry = $args[‘entry’]; } else { $entry = FrmEntry::getOne(…Continue reading

Adjust values displayed in cart

add_filter( ‘wc_fp_cart_item_data’, ‘modify_frm_woo_display’, 10, 2 ); function modify_frm_woo_display( $values, $args ) { if ( in_array( $args[‘field’]->id, array( 123, 124, 125 ) ) ) { $end_position = strpos( $values[‘display’], ‘ (‘ ); $values[‘display’] = substr( $values[‘display’], 0, $end_position ); } return…Continue reading

Basic Example

add_filter(‘frm_field_div_classes’, ‘add_div_class’, 10, 2); function add_div_class($classes, $field){ $space = ‘ ‘; if($field[‘id’] == 3137){ //change 3137 to the ID of your field $classes .= $space . ‘class_name‘; //change class_name to your CSS class } return $classes; }Continue reading

Enable Meta Keys for Single Form

add_filter(‘frm_include_meta_keys’, ‘include_meta_keys_for_single_form’, 10, 2); function include_meta_keys_for_single_form( $include_keys, $args ) { if ( $args[‘form_id’] == 364 ) { //replace 364 with Form ID $include_key = true; } return $include_key; }Continue reading

Add a mask to Credit Card

add_filter( ‘frm_input_masks’, ‘add_cc_mask’, 10, 2 ); function add_cc_mask( $masks, $forms_on_page ) { foreach ( $forms_on_page as $form ) { if ( $form->id == 10 ) { // replace 10 with your form id $masks[‘FIELDKEYHERE_cc’] = ‘9999-9999-9999-9999’; // replace FIELDKEYHERE with…Continue reading