Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author MakeWebBetter

    (@makewebbetter)

    Hello,

    By default, our integration syncs didn’t sync the custom properties, but if you want to sync the custom properties from WooCommece to HubSpot we can achieve this, for this, please connect with our support.

    Regards,

    For anyone struggling with the same, here is a working example:

    
        add_filter( 'hubwoo_map_ecomm_DEAL_properties', function( $deal_properties, $order_id ){
            $order = wc_get_order( $order_id );
            // set deal properties
            $deal_properties['some custom property name'] = 'some value';
            ...
            return $deal_properties;
        }, 99, 2 );
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to sync custom field values of an order to Hubspot properties’ is closed to new replies.