LoginSignup
0
0

More than 3 years have passed since last update.

EC-CUBE4 の購入完了ページには CV タグを埋め込めるように Order が渡されています。 #eccube

Posted at

EC-CUBE4 の購入完了ページには CV タグを埋め込めるように Order が渡されています。
ヒントとなるメモを投稿しておきますので、各サービスのCVタグに合わせてご活用ください。
例えば購入した商品の商品コードのアラートを出すには template/default/Shopping/complete.twig に以下のようにブロックを追記します。

template/default/Shopping/complete.twig
{% block javascript %}
    <script>
        {% for ProductOrderItem in Order.ProductOrderItems %}
            alert('{{ ProductOrderItem.product_code }}');
        {% endfor %}
    </script>
{% endblock %}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0