Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function forms_pre_submission( $update_data, $user_id, $contact_id, $form_id ) {
- $update_data['field[15,0]'] = 'MY VALUE'; // This is the AC custom field ID
- return $update_data;
- }
- add_filter( 'wpf_gform_pre_submission', 'forms_pre_submission', 10, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement