Advertisement
verygoodplugins

Untitled

Apr 17th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function my_wpforms_filter( $update_data, $user_id, $contact_id ) {
  2.  
  3.     if( ! is_user_logged_in() && ! empty( $contact_id ) ) {
  4.         $update_data = array();
  5.     }
  6.  
  7.     return $update_data;
  8.  
  9. }
  10.  
  11. add_filter( 'wpf_wpforms_pre_submission', 'my_wpforms_filter', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement