Hi Gemeinde,
möchte den Google Ads Conversation Code in meinem Theme vin die Chouout Twig einfügen.
vi index.html.twig
{% 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': 1.0,
'currency': 'EUR',
'transaction_id': ''
});
</script>
{% endblock %}
Ich suche die richtige Variable aus Shopware für value?
Danke
Also ich sehe
‚checkout.summaryTotalPrice‘ => ‚Gesamtsumme‘,
‚checkout.summaryTotalPriceRounded‘ => ‚Gesamtsumme gerundet‘
Wenn das die richtigen Variablen sind, wie würde ich die denn in das JavaScript von Google bauen?
So, geht es leider nicht:
vi index.html.twig
{% 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': {% checkout.summaryTotalPriceRounded %},
'currency': 'EUR',
'transaction_id': ''
});
</script>
{% endblock %}
Also die Übergabe des Bestellwertes tut so nicht.
'value': {% checkout.summaryTotalPriceRounded %},
Wie müsste die Syntax richtig aussehen?
So?
'value': {% {{checkout.summaryTotalPriceRounded}} %},
Danke
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
system
Geschlossen,
4
Dieses Thema wurde automatisch 30 Tage nach der letzten Antwort geschlossen. Es sind keine neuen Antworten mehr erlaubt.