diff --git a/integrations/ecommerce/woocommerce.php b/integrations/ecommerce/woocommerce.php index 52ffcdb..e91ae43 100644 --- a/integrations/ecommerce/woocommerce.php +++ b/integrations/ecommerce/woocommerce.php @@ -313,6 +313,7 @@ public function completed_order() { 'revenue' => $order->get_total() - ( $order->get_total_shipping() + $order->get_total_tax() ), 'shipping' => $order->get_total_shipping(), 'tax' => $order->get_total_tax(), + 'currency' => $order->get_order_currency(), 'products' => $products ) ); @@ -336,4 +337,4 @@ function segment_commerce_woo() { return $commerce->init(); } -add_action( 'plugins_loaded', 'segment_commerce_woo', 100 ); \ No newline at end of file +add_action( 'plugins_loaded', 'segment_commerce_woo', 100 );