Skip to content

Instantly share code, notes, and snippets.

@Kazuki-tam
Last active February 11, 2022 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kazuki-tam/4d7f2edd5168ba7128d9b4d17eff23e2 to your computer and use it in GitHub Desktop.
Save Kazuki-tam/4d7f2edd5168ba7128d9b4d17eff23e2 to your computer and use it in GitHub Desktop.
配送希望日時のメール通知_shopify
<!--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