Advertisement
verygoodplugins

Untitled

Nov 20th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function apply_my_optin_tag( $update_data, $user_id, $contact_id, $form_id ) {
  2.  
  3.     if ( $update_data['gh_field_name'] == 'yes' ) {
  4.  
  5.         $tag_id = wp_fusion()->user->get_tag_id( 'Name of tag' );
  6.  
  7.         wp_fusion()->crm->apply_tags( array( $tag_id ), $contact_id );
  8.  
  9.     }
  10.  
  11. }
  12.  
  13. add_action( 'wpf_forms_post_submission', 'apply_my_optin_tag', 10, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement