Advertisement
verygoodplugins

Untitled

Feb 17th, 2021
780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. function my_custom_deal_properties( $deal, $order_id ) {
  2.  
  3.     $deal['associations']['associatedCompanyIds'] = array(12345);
  4.  
  5.     return $deal;
  6.  
  7. }
  8.  
  9. add_filter( 'wpf_ecommerce_hubspot_add_deal', 'my_custom_deal_properties', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement