Versandkostenvariable im Checkout für Google Conversion Tracking

Hallo,

gibt es tatsächlich keine Variable um mit dem Checkout Finish die Versandkosten an das Google Conversion Tracking zu übergeben?

Nachstehend die Variablen die ich bisher gefunden und getestet habe, inkl. der Ausgabe:

{{ delivery.shippingCosts.totalPrice|currency }} = „0,00 €“ (immer 0)
{{ „checkout.shippingCosts“|trans|sw_sanitize }} = „Versanddetails“
{{ „account.orderItemShippingcosts“|trans|sw_sanitize }} = „Versandkosten:“
{{ activeShipping.shippingCosts.totalPrice < 0 ? ‚-‘ : ‚+‘ }} = „+“
{{ cart.deliveries.shippingCosts.sum().totalPrice }} = „“

Danke

1 „Gefällt mir“

Habe das gleiche Problem.

Wurde da mittlerweile eine Lösung gefunden?

Liebe Grüße

{% set taxRate = page.order.taxStatus == ‚gross‘ ? (page.order.amountTotal / page.order.amountNet) - 1 : 0 %}
{% set netShipping = page.order.taxStatus == ‚gross‘ ? (page.order.shippingTotal / (1 + taxRate))|number_format(2, ‚.‘, ‚‘) : page.order.shippingTotal|number_format(2, ‚.‘, ‚‘) %}

‚shipping‘: „{{ netShipping }}“,

Übergibt die Versandkosten netto.