Checkout Variablen von Shopware 6 für Google [gelöst]

Ok, so muss es aussehen:

{% sw_extends '@Storefront/storefront/page/checkout/finish/index.html.twig' %}

{% block page_checkout_finish %}
  {{ parent() }}

<!-- Event snippet for checkout/finish conversion page -->
<script>
  gtag('event', 'conversion', {
      'send_to': 'AW-******',
      'value': {{ page.order.price.totalPrice }},
      'currency': 'EUR',
      'transaction_id': ''
  });
</script>

{% endblock %}
       

Danke