I'm using the Gravity Forms + Custom Post Types plugin to allow users to create a custom post type from the front end of my website. This CPT has a 'priority' custom taxonomy associated with it. I followed the plugin's instructions to set up the form to create CPTs with the priority taxonomy. The form is being saved but there is a problem - Gravity Forms is saving the term IDs instead of the term name.
In the Gravity Forms entries screen I see that it is saving the priority as '10', '12', 17' (the term IDs) instead of 'low', 'medium', 'high' (the term names).
I figure this is a limitation of the plugin and that I should be able to modify the value that gets saved to the database with some custom code (if value is 10, change it to 'low' and so on). However I don't know how to make use of Gravity Forms' actions and filters. Could someone please share an example of how to modify the saved value for my custom taxonomy? Thanks