app/Plugin/ProductOption42/Resource/template/default/Cart/cart_option.twig line 1

Open in your IDE?
  1. {#
  2. * Plugin Name : ProductOption
  3. *
  4. * Copyright (C) BraTech Co., Ltd. All Rights Reserved.
  5. * http://www.bratech.co.jp/
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. #}
  10. <style>
  11. .ec-cartRow .ec-cartRow__summary .ec-cartRow__name {
  12. word-break: break-all;
  13. }
  14. </style>
  15. {% for CartItemOption in CartItem.CartItemOptions %}
  16.     <br>{{ CartItemOption.label }}:{% for CartItemOptionCategory in CartItemOption.CartItemOptionCategories %}{{ CartItemOptionCategory.value }}{%if loop.last == false %},{% endif %}{% endfor %}
  17. {% endfor %}