I have a name input and if someone enters their name as ‘chris smith’ I would like to save it as Chris Smith, with capital letters.
I know this can be done with CSS on the output, however can this be down when saved?
You need to create an acf/save_post action. In your function you get the value of the field, reformat it as desired and then save the new value with update_field().