配送希望日時のメール通知_shopify
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Shopify_通知設定_注文の確認テンプレートに挿入 --> | |
{% if attributes["delivery_time"] or attributes["delivery_date"] %} | |
<table class="row"> | |
<tr> | |
<td class="customer-info__item"> | |
<h4>お届け日時</h4> | |
{% if attributes["delivery_date"] %} | |
{{ attributes["delivery_date"] | date: "%Y年 %m月 %d日"}} | |
{% else %} | |
指定なし | |
{% endif %} | |
{% if attributes["delivery_time"] %} | |
{{ attributes["delivery_time"] }} | |
{% else %} | |
指定なし | |
{% endif %} | |
</td> | |
</tr> | |
</table> | |
{% endif %} | |
<!--// Shopify_通知設定_注文の確認テンプレートに挿入 --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment