Yes, please go to this file: wp-content/themes/noo-jobmonster/framework/libs/custom-fields/render-fields.php
line 88 with the function noo_render_number_field()
and change the input code from
<input id="<?php echo esc_attr( $input_id ) ?>" <?php echo $class; ?> type="number"
name="<?php echo esc_attr( $field_id ) ?>" value="<?php echo esc_attr( $value ); ?>"
placeholder="<?php echo $field_value; ?>"/>
to
<input id="<?php echo esc_attr( $input_id ) ?>" <?php echo $class; ?> type="number"
name="<?php echo esc_attr( $field_id ) ?>" value="<?php echo esc_attr( $value ); ?>"
placeholder="<?php echo $field_value; ?>" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);" maxlength = "9" />
This code will affect to all your number custom field.
Please recheck it.
Regards.