Advertisement
verygoodplugins

Untitled

Apr 1st, 2020
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function set_interests_null( $update_data, $user_id, $contact_id, $form_id ) {
  2.  
  3.     if ( 2 == $form_id && empty( $update_data['interests'] ) ) {
  4.         $update_data['interests'] = null;
  5.     }
  6.  
  7.     return $update_data;
  8.  
  9. }
  10.  
  11. add_filter( 'wpf_forms_pre_submission', 'set_interests_null', 10, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement