Exclude fields by id
add_filter( ‘frm_quiz_score_field’, ‘exclude_fields_from_quiz_score’, 10, 2 ); function exclude_fields_from_quiz_score( $count_field, $args ) { $fields_to_exclude = array( 2504, 2505, 2506 ); // List the ids of the fields you want to exclude from the quiz score. if ( in_array( $args[‘field’]->id, $fields_to_exclude )…Continue reading