Advertisement
verygoodplugins

Untitled

Apr 11th, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_action('wpf_woocommerce_payment_complete', 'my_wpf_woo_complete', 10, 2);
  2.  
  3. function my_wpf_woo_complete( $order_id, $contact_id ) {
  4.  
  5.     $payment_method = get_post_meta( $order_id, '_payment_method', true );
  6.     if($payment_method == 'cheque') {
  7.         wp_fusion()->crm->apply_tags(array(123), $contact_id);
  8.     }
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement