app/Plugin/UaGaEEc4/Resource/template/default/_products.twig line 1

Open in your IDE?
  1. {#
  2. UaGaEEc: Google Analytics eコマース/拡張eコマース対応プラグイン
  3. Copyright (C) 2016-2021 Freischtide Inc. All Rights Reserved.
  4. http://freischtide.tumblr.com/
  5. License: see LICENSE.txt
  6. #}
  7. {% for product in products %}
  8.   {
  9.   "item_id": "{{ product.id }}",
  10.   "item_name": "{{ product.name }}",
  11.   "currency": "JPY",
  12.   "price": "{{ product.price }}",
  13.   {% if product.category|length > 0 %}
  14.     "item_category": "{{ product.category }}",
  15.   {% endif %}
  16.   {% if product.quantity is defined and product.quantity > 0 %}
  17.     "quantity": {{ product.quantity }},
  18.   {% endif %}
  19.   {% if list_name is defined %}
  20.     "list_name": "{{ list_name }}",
  21.   {% endif %}
  22.   "list_position": {{ loop.index }}
  23.   }{% if not loop.last %},{% endif %}
  24. {% endfor %}