How to confirm selected schedule in order confirmation email?
Confirm selected date and time in order confirmation email
If you have customized your default order confirmation email, selected date may not work, Please contact us for help.
Outcome
Selected date and time will appear like this in Order confirmation email
How to set up?
Step 1. Copy the following code
{% comment %}Start Omega{% endcomment %}
<table>
<tr>
<td class="customer-info__item">
<h4>Additional details</h4>
<p>
{% for attribute in attributes %}
{% assign attributeName = attribute | first %}
{% assign attributeValue = attribute | last %}
{% if attributeName != 'delivery_date_origin'
and attributeName != 'ot_channel'
and attributeName != 'ot_location_id'
and attributeValue != '_' %}
{{ attribute | first }}: {{ attribute | last }}<br>
{% endif %}
{% endfor %}
</p>
</td>
</tr>
</table>
{% comment %}End Omega{% endcomment %}
Step 2. Go to Shopify settings > Notifications > Customers notifications

Step 3. Choose Order confirmation email > Edit code

Step 4. Use Ctrl + F and type Shipping method to find

Step 5. Under the </tr>, paste the lines of code you just copied

TROUBESHOOTING:
Don't see date and time in order confirmation email: Please contact us for further help because you may customized default Shopify email template
Updated on: 30/05/2025
Thank you!