Advertisement
verygoodplugins

Untitled

Oct 22nd, 2020
776
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function forms_pre_submission( $update_data, $user_id, $contact_id, $form_id ) {
  2.  
  3.     $update_data['field[15,0]'] = 'MY VALUE'; // This is the AC custom field ID
  4.  
  5.     return $update_data;
  6.  
  7. }
  8.  
  9. add_filter( 'wpf_gform_pre_submission', 'forms_pre_submission', 10, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement