Save highest and lowest fields
add_filter( ‘frm_validate_entry’, ‘frm_save_highest_and_lowest’, 20, 2 ); function frm_save_highest_and_lowest( $errors, $values ) { if ( $values[‘form_id’] !== 173 ) { // Change 173 to the id of your form. return $errors; } $fields = array( 2330, 2331, 2332, 2333, 2334 );//…Continue reading