add_action('forminator_form_after_handle_submit', 'wpmudev_uploaded_filename_fix', 10, 2); add_action('forminator_form_after_save_entry', 'wpmudev_uploaded_filename_fix', 10, 2); function wpmudev_uploaded_filename_fix($form_id, $response) { if ( $form_id…
Forminator: Use submitted data after submission
add_filter('forminator_custom_form_submit_field_data', 'custom_form_submit', 11, 2);
function custom_form_submit($field_data_array, $form_id){
//Todo: some code
return $field_data_array;
}
Dieser Beitrag hat 0 Kommentare