Advertisement
verygoodplugins

Untitled

Apr 20th, 2020
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function custom_wpf_remove_tags( $update_data, $user_id, $contact_id, $form_id ) {
  2.  
  3.     if ( $form_id == 1 ) {
  4.  
  5.         wp_fusion()->crm->remove_tags( array( 'Tag Name One', 'Tag Name Two' ), $contact_id );
  6.  
  7.     }
  8.  
  9. }
  10.  
  11. add_action( 'wpf_forms_post_submission', 'custom_wpf_remove_tags', 10, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement