Advertisement
verygoodplugins

Untitled

Apr 11th, 2018
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. /**
  2.  * Apply tags in Intercom when tags are modified in WP Fusion
  3.  *
  4.  * @return void
  5.  */
  6. function wpf_send_tags_to_intercom( $user_id, $tags ) {
  7.  
  8.     if( isset( $_GET['wpf_action'] ) ) {
  9.  
  10.         $intercom = wpf_connect_to_intercom();
  11.  
  12.         $contact_id = wpf_get_intercom_contact_id( $user_id );
  13.  
  14.         if( $contact_id !== false ) {
  15.             $intercom->apply_tags( $tags, $contact_id );
  16.         }
  17.  
  18.     }
  19.  
  20. }
  21. add_action( 'wpf_tags_modified', 'wpf_send_tags_to_intercom', 5, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement