Change maximum filename limit
add_filter( ‘frm_max_filename_length’, ‘change_max_filename_limit’ ); function change_max_filename_limit( $limit, $name ) { // default is 100. return 200; }Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_filter( ‘frm_max_filename_length’, ‘change_max_filename_limit’ ); function change_max_filename_limit( $limit, $name ) { // default is 100. return 200; }Continue reading
add_filter( ‘frm_fields_in_tags_box’, ‘remove_likert_tags_box’, 10, 2); function remove_likert_tags_box( $fields, $args ) { if ( 13 != $args[‘form_id’] ) { return $fields; // Do not modify fields if this is not the form you want. } // Remove all Likert fields. foreach…Continue reading
add_filter( ‘frm_views_fields_in_create_view_popup’, ‘change_fields_before_display_in_table_view_popup’ ); function change_fields_before_display_in_table_view_popup( $fields ) { // modify the $fields before they are added to the new table view pop up. return $fields; }Continue reading
// Add the padding setting in the field. add_action( ‘frm_field_options’, ‘my_custom_function’ ); function my_custom_function( $args ) { $field = $args[‘field’]; $is_text_input = FrmField::is_field_type( $field, ‘text’ ); // replace ‘text’ with the type of the field you need to evaluate –…Continue reading
add_filter( ‘frm_duplicate_check_val’, ‘my_custom_function’ ); function my_custom_function( $check_val ) { if ( 123 === (int) $check_val[‘form_id’] ) { //replace 123 with the id of the form you need to catch unset( $check_val[‘ip’] ); } return $check_val; }Continue reading
add_action( ‘frm_display_form_action’, ‘frm_close_form_on_weekends’, 8, 3 ); function frm_close_form_on_weekends( $params, $fields, $form ) { remove_filter( ‘frm_continue_to_new’, ‘__return_false’, 50 ); if ( in_array( $form->id, array( 214, 216, 217 ) ) && ! is_admin() ) { //replace 214, 216, 217 with the ids…Continue reading
add_filter( ‘frm_images_dropdown_option_classes’, ‘add_css_class_image_dropdown’, 10, 2); function add_css_class_image_dropdown( $classes, $args ) { $classes .= ‘ your-custom-class’; return $classes; }Continue reading
add_action( ‘frm_display_form_action’, ‘frm_open_hours_and_days’, 8, 3 ); function frm_open_hours_and_days( $params, $fields, $form ) { remove_filter( ‘frm_continue_to_new’, ‘__return_false’, 50 ); if ( ! in_array( $form->id, array( 214, 216, 217 ) ) || is_admin() ) { //replace 214, 216, 217 with the ids…Continue reading
add_filter(‘frm_delete_temp_files_period’, ‘adjust_temp_files_deletion_period’); function adjust_temp_files_deletion_period( $period ) { // default is -3 hours return ‘-30 minutes’; // minimum life span of a file }Continue reading
add_filter( ‘rest_prepare_frm_entries’, ‘my_custom_function’ ); function my_custom_function( $response ) { $meta_key = ‘5a4m0’; // change this to the meta key that needs to be converted to an integer. if ( isset( $response->data ) && ! empty( $response->data[‘meta’] ) && isset( $response->data[‘meta’][…Continue reading