Skip start page

add_filter(‘frm_filter_final_form’, ‘skip_start_page’, 15); function skip_start_page( $form ) { $form = str_replace( ‘class=”frm_active_chat_field frm_chat_start_page”‘, ‘style=”display: none;” class=”frm_active_chat_field frm_chat_start_page”‘, $form ); return $form; }Continue reading

Display percentage in pie graph

add_filter(‘frm_google_chart’, ‘frm_pie_chart_tooltip_percentage’, 10, 2); function frm_pie_chart_tooltip_percentage($options, $atts){ if ( $atts[‘type’] == ‘pie’ ) { $options[‘tooltip’] = array(‘text’ => ‘percentage’); } return $options; }Continue reading

Disable file URLs for uploaded file

add_action( ‘frm_field_input_html’, ‘disable_dropzone_urls’ ); function disable_dropzone_urls( $field ) { $field_id = 4626; // change 4626 to your field ID if ( $field_id !== (int) $field[‘id’] ) { return; } global $frm_vars; $key = ‘file’ . $field_id; if ( ! array_key_exists(…Continue reading

Wrap the value of checkbox field in a span

add_filter( ‘frm_entries_column_value’, ‘wrap_column_value_in_span’ ); function wrap_column_value_in_span( $val, $args ) { $field = FrmField::getOne( $args[‘col_name’] ); if ( ! $field ) { return $val; // Field does not exist or this is a specific column. } if ( ‘checkbox’ === $field->type…Continue reading

Replace [date] or [user_id] before sending an API request

add_action( ‘frm_trigger_api_action’, ‘add_shortcodes_to_api_request’, 1 ); function add_shortcodes_to_api_request() { add_filter( ‘frm_content’, function( $value ) { $value = str_replace( ‘[date]’, FrmProAppHelper::get_date( ‘Y-m-d’ ), $value ); $value = str_replace( ‘[user_id]’, get_current_user_id(), $value ); return $value; } ); }Continue reading

Add custom class to a form

add_filter( ‘frm_add_form_style_class’, ‘add_style_class’, 10, 3 ); function add_style_class( $class, $style, $args = array() ) { $target_form_id = 439; // change 439 to your form ID. if ( ! empty( $args[‘form’] ) && ! empty( $args[‘form’][‘fields’] ) ) { $field =…Continue reading