テーマ仕様書
shop
マイページ
スマレジ
バーコード画面

スマレジ会員バーコード画面

スマレジ会員のバーコードを表示する画面です。
※本機能は開発中の機能です。公開までしばらくお待ち下さい。

ショップのパス

ドメイン/shop/customer/smaregi

テーマ管理のファイルパス

ec_force/shop/customer/smaregi/show.html.liquid
ec_force/shop/customer/smaregi/show.html+smartphone.liquid

JS タグ

{{ 'shop/customer/smaregi' | javascript_include_tag }}

必要なコンポーネント

※任意とあるもの以外はシステム上必要なコンポーネントとなりますので、必ず使用するようにしてください。

{{ 'shop/customer/smaregi' | javascript_include_tag }}
 
<div id="customer-smaregi-view">
  {% if barcode_url != null and barcode_url.size > 0 %}
    <!-- 会員バーコード -->
    <img src="{{ barcode_url }}">
  {% elsif smaregi_message != null and smaregi_message.size > 0 %}
    <!-- スマレジ未連携時メッセージ -->
    {{ smaregi_message }}
  {% endif %}
  {% if customer.smaregi_customer_and_not_member? %}
    <!-- 会員登録リンク -->
    <a href="/shop/customer/registration_member">会員登録する</a>
  {% endif %}
</div>

画面イメージ

※こちらは、上記で紹介しているコンポーネントのコードにデフォルトデザインをCSSであてたイメージになります。コンポーネントのコードのみだと、このような表示にはなりませんのでご注意ください。