Hi @ajtatum
I hope you are doing well.
You would need to use some custom coding for this, Forminator has this action:
/**
* Action called before setting fields to database
*
* @since 1.0.2
*
* @param Forminator_Form_Entry_Model $entry - the entry model.
* @param int $form_id - the form id.
* @param array $field_data_array - the entry data.
*/
do_action( 'forminator_custom_form_submit_before_set_fields', $entry, self::$module_id, self::$info['field_data_array'] );
$entry = The submitted entry model
$form_id = The ID of the form
$field_data_array = The submitted entry data
The code would look like:
add_action( 'forminator_custom_form_submit_before_set_fields', 'my_function', 10, 3);
function my_function( $entry, $form_id, $form_data_array ) {
// do something here
// you got submitted data in $form_data_aray
// you also have entire "submission" as object in $entry if needed
}
Best Regards
Patrick Freitas