Add your custom data to the backend JS

add_filter(‘frm_acf_backend_js_data’, ‘acf_backend_js_data’, 10, 2}; function acf_backend_js_data( $data, $args ) { $data[‘form_action_id’] = $args[‘form_action’]->ID; $data[‘strings’][‘custom_string’] = ‘Your custom string’; $data[‘custom_data’] = ‘Your custom data’; return $data; }Continue reading

Disable rich text email for specific form

add_filter( ‘frm_rich_text_emails’, ‘disable_rich_text_email_for_specific_form’, 10, 2); function disable_rich_text_email_for_specific_form( $rich_text_emails, $args ) { $target_form_id = 338; //Replace 338 with your form ID if ( $target_form_id === (int) $args[‘form’]->id ) { $rich_text_emails = false; } return $rich_text_emails; }Continue reading

Change Outcome Quiz image border radius for one form

add_filter(‘frm_quiz_outcome_image_border_radius’, ‘change_quiz_outcome_image_border_radius_form’, 10, 2); function change_quiz_outcome_image_border_radius_form( $border_radius, $args ) { $target_form_id = 267; //Change 267 to the ID of your form if ( $target_form_id === $args[‘form_id’] ) { $border_radius = ‘100px’; //change 100px } return $border_radius; }Continue reading

Change Outcome Quiz image border radius for a field

add_filter(‘frm_quiz_outcome_image_border_radius’, ‘change_quiz_outcome_image_border_radius_field’, 10, 2); function change_quiz_outcome_image_border_radius_field( $border_radius, $args ) { $target_outcome_id = 1168; //Change 1168 to the ID of your Outcome Quiz field if ( $target_outcome_id === $args[‘outcome’]->ID ) { $border_radius = ‘100px’; //change 100px } return $border_radius; }Continue reading

Add API character set options

add_filter( ‘frm_api_charset_options’, ‘add_api_charset_options’ ); function add_api_charset_options( $charset_options ) { $charset_options[] = ‘windows-1252’; return $charset_options; }Continue reading

Change duplicated value

add_filter(‘frm_before_duplicate_entry_values’, ‘before_duplicate_entry’); function before_duplicate_entry( $metas ) { $target_field_id = 950; // Replace 950 with your field ID. foreach ( $metas as $meta ) { if ( $target_field_id === (int) $meta->field_id ) { $meta->meta_value = ‘Duplicate of ‘ . $meta->meta_value; break;…Continue reading

Change failed message for specific form

add_filter(‘frm_global_failed_msg’, ‘change_global_failed_msg_form’, 10, 2); function change_global_failed_msg_form( $message, $settings ) { $target_form_id = 852; // change 852 with the ID of your form if ( $target_form_id === (int) $settings->current_form ) { $message = ‘Custom failed message for target form ID’; }…Continue reading

Allow submissions from allowlist of referrer URLs

add_filter(‘frm_validate_entry’, ‘allowlist_referrer_url’ ,10, 2); function allowlist_referrer_url( $errors, $values ) { $target_form_id = 215; // Change 215 to the ID of your form. if ( $target_form_id !== (int) $values[‘form_id’] ) { return $errors; } $referer = FrmAppHelper::get_server_value( ‘HTTP_REFERER’ ); $referer_allowlist =…Continue reading