app/template/yamaria/Product/sales_restrictions_cart.twig line 1

Open in your IDE?
  1. {#
  2. * Plugin Name : SalesRestrictions4
  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. .sales-restrictions {
  12.     background: #f8f8f8;
  13.     border: 1px solid #d9d9d9;
  14.     margin: 20px 0;
  15.     padding: 16px;
  16. }
  17. .sales-restrictions span {
  18.     color: #de5d50;
  19.     font-weight: bold;
  20. }
  21. </style>
  22. <div class="sales-restrictions">
  23.     {% if is_granted('ROLE_USER') == false %}
  24.     <span>ご当選者はログインが必要です。<br>ログイン後に購入ボタンが表示されます。</span>
  25.     <!--会員の方はログイン後再度ご確認ください。<br />
  26.     非会員の方は会員登録頂き再度ご確認ください。<br />-->
  27.     {% else %}
  28.     <!--抽選開始までお待ちください。--><!--順次 当選者へ購入手続きのメールをお送りします-->ご当選者はログインが必要です。<br>
  29.     ログイン後に購入ボタンが表示されます。
  30.     {% endif %}
  31. </div>