Looks like the field_type has different values (I’m not sure where that came from), but it’s now fixed by changing them inside the switch operator line 718:
1 for ‘NGGCF_FIELD_TYPE_INPUT’
2 for ‘NGGCF_FIELD_TYPE_TEXTAREA’
3 for ‘NGGCF_FIELD_TYPE_SELECT’
Now I’m getting this error in line 721 for empty field value, and fixed using ternary operator as follows:
<?php echo !empty($value) ? esc_attr($value->field_value):''; ?>