This line causes errors when I have an order with only downloadable products because there in that case there is no shipping method: https://github.com/CVM/Magento_GoogleTagManager/blob/master/app/code/community/CVM/GoogleTagManager/Block/Gtm.php#L92 I've fixed this now with: ``` 'transactionShippingMethod' => $order->canShip() ? $order->getShippingCarrier()->getCarrierCode() : 'downloadable', ``` Can you fix this in the next version?