Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 11, 2017 23:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/bec9c90a0c5a3b1dc3217fbf3f50b596 to your computer and use it in GitHub Desktop.
Save billerickson/bec9c90a0c5a3b1dc3217fbf3f50b596 to your computer and use it in GitHub Desktop.
<?php
/**
* Include Form Fields on Confirmation URL
*
*/
function ea_wpforms_include_form_fields_on_confirmation( $url, $form_id, $fields ) {
$args = array();
foreach( $fields as $field ) {
if( !empty( $field['value'] ) )
$args['field_' . $field['id']] = $field['value'];
}
return esc_url_raw( add_query_arg( $args, $url ) );
}
add_filter( 'wpforms_process_redirect_url', 'ea_wpforms_include_form_fields_on_confirmation', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment