themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Layout/Header/_gtm_datalayer.html.twig line 1

Open in your IDE?
  1. {%- if sylius.channel.googleTagManagerId is not null -%}
  2.     {% if chcookieconsent_isCategoryAllowedByUser('analytics') == true %}
  3.         <script type="text/javascript">
  4.             window.dataLayer = window.dataLayer || [];
  5.             {% if push is not null %}
  6.             {% for data in push %}
  7.             window.dataLayer.push({{ data|json_encode|raw }});
  8.             {% endfor %}
  9.             {% endif %}
  10.         </script>
  11.         <script>
  12.             //sert uniquement pour l'event add_payment_info qui se déclenche quand on choisit et qu'on valide son moyen de paiement
  13.             {% if cart is not null %}
  14.             var cart = {{ cart|raw }}
  15.             {% endif %}
  16.         </script>
  17.     {% endif %}
  18. {% endif %}