This is not built in functionality of Gravity Forms. There is no option that can be enabled that will do this for you.
You would have to implement this as a customization. You would need to use the gform_pre_submission hook to get the value of the field(s) and manipulate it so that it uses the casing you require.
The gform_pre_submission hook is documented here:
http://www.gravityhelp.com/documentation/page/Gform_pre_submission
You would write custom code that uses that hook to manipulate the submitted data before it is saved. You would place your custom code either in your themes functions.php file, or you could create your own custom plugin that contains your custom code that you then activate on that site.
Posted 12 years ago on Wednesday April 4, 2012 |
Permalink