Advertisement
verygoodplugins

Untitled

Jun 21st, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function always_create_new_contacts( $contact_id, $update_data, $user_id, $form_id ) {
  2.  
  3.     if ( $form_id == 22 || $form_id == 29 || $form_id == 30 || $form_id == 28 ) {
  4.  
  5.         $contact_id = false;
  6.  
  7.     }
  8.  
  9.     return $contact_id;
  10.  
  11. }
  12.  
  13. add_filter( 'wpf_formidable_pre_submission_contact_id', 'always_create_new_contacts', 10, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement