受取方法(部分テンプレート)
注文情報入力画面で利用する受取方法選択フォーム用部分テンプレートです。
注文情報入力画面で include して利用します。(注文情報入力画面以外では利用できません)
テーマ管理のファイルパス
ec_force/shop/orders/_view_how_to_receive.html.liquid
ec_force/shop/orders/_view_how_to_receive.html+smartphone.liquid
必要なコンポーネント
任意とあるもの以外はシステム上必要なコンポーネントとなりますので、必ず使用するようにしてください。
{% if pickup_store_is_available %}
<div id="view-how-to-receive">
<legend>受取方法</legend>
<label>
<input type="radio" name="how_to_receive" id="pickup-at-store" {% if pickup_at_store_is_checked %}checked{% endif %}>
店頭受取
</label>
<label>
<input type="radio" name="how_to_receive" id="delivery-to-address" {% if delivery_to_address_is_checked %}checked{% endif %}>
通常配送
</label>
</div>
{% endif %}