[Fixed] missing checkout/user extension

making sure that begin_checkout is always rolled out
This commit is contained in:
2025-06-15 14:09:23 +02:00
parent 6195b5ba65
commit 2018bbb97c
2 changed files with 7 additions and 1 deletions

View File

@ -13,7 +13,7 @@
'event': 'begin_checkout',
'eventLabel':'Begin of checkout',
'ecommerce': {
'actionField': "Begin",
'actionField': "Begin Checkout - Step 2",
'currency': "{{ gtmCurrency.name }}",
'value': {{ d3BasketPrice.getPrice() }},
'coupon': '{% for key, sVoucher in oxcmp_basket.getVouchers() %}{{ sVoucher.sVoucherNr }}{% if not loop.last %}, {% endif %}{% endfor %}',

View File

@ -3,5 +3,11 @@
{% block checkout_user_main %}
{{ parent() }}
{% include "@d3googleanalytics4/event/begin_checkout.html.twig" %}
{% endblock %}
{% block checkout_user %}
{{ parent() }}
{% include "@d3googleanalytics4/event/begin_checkout.html.twig" %}
{% endblock %}