DingDoong: Delivery and Pickup
WebsiteFacebookYoutubeTry for freePartner with us
  • πŸŽ‰About DingDoong: Delivery Date
  • GETTING STARTED
    • πŸ“°Onboarding
  • πŸ—“οΈHow to create a test theme?
  • πŸ‘©β€πŸ’»How to place an order test?
  • DASHBOARD
    • πŸ—“οΈDashboard
  • RATES
    • 🚚Delivery rates
      • How to add rates on CHECKOUT PAGE?
  • GENERAL SETTINGS
    • πŸ—“οΈGeneral settings
      • Date requirement
      • Email notifications
        • Order confirmation email
        • Email for "Ready for pickup"
        • Email for "Out for delivery"
      • Local delivery validation
      • Order management
      • Advanced settings
    • β›³How to add date and time to Thank You page?
  • HOW TO ENABLE GG MAPS API KEY?
    • πŸ—ΊοΈCreating a Google Maps API key
  • WIDGET SETTINGS
    • πŸ“†Widget position
    • πŸ“•Widget Appearance
    • πŸ”€Advanced widget text
      • Text Setting For Delivery Date Picker Widget
      • Text Setting For Store Pickup Date Picker Widget
      • Text Setting For Shipping Date Picker Widget
  • MULTIPLE LOCATIONS
    • πŸ“Multiple location management
  • LOCAL DELIVERY
    • 🚚Delivery Overview
    • πŸ₯Delivery Validator
      • Exact Postal Code Matching
      • Partial Postal Code Matching
    • πŸ“…Delivery Scheduling
      • Local delivery choice & delivery avaibility
      • Limit orders
      • Blackout dates (Holidays)
      • Order Tag
      • Product avaibility
      • Product Override
        • Set product-specific preparation time
        • Set product-specific available dates & time
        • Set product-specific blackout dates & time
        • What happens when a cart has different products with different rules?
  • STORE PICKUP
    • πŸͺStore Pickup Overview
    • πŸ“…Pickup Scheduling
      • Pickup choice & Pickup avaibility
      • Preparation time & date range
      • Limit orders
      • Blackout dates (Holidays)
      • Order Tag
      • Product avaibility
      • Product Override
        • Set product-specific preparation time
        • Set product-specific available dates & time
        • Set product-specific blackout dates & time
        • What happens when a cart has different products with different rules?
    • How to have a straightforward pickup experience?
  • SHIPPING
    • 🌟How to add Shipping with no date?
    • 🚚Shipping Overview
    • πŸ“…Shipping Date
      • Shipping choice & avaibility
      • Preparation time & Date range
      • Limit orders
      • Blackout dates (Holidays)
      • Order Tag
      • Product avaibility
      • Product Override
        • Set product-specific preparation time
        • Set product-specific available dates & time
        • Set product-specific blackout dates & time
        • What happens when a cart has different products with different rules?
  • ORDER REPORT
    • πŸ’ΉOrder report
    • πŸŽ‰Sync Orders To Google Calendar
  • FAQs
    • ❓FAQs
  • OUR BLOGS
    • 🚚Scheduled Delivery: How to let customers choose their preferred delivery date and time
    • 🏞️How to restrict delivery areas for Shopify stores?
    • ☺️Exceptional online shopping experience with Group Order! Why haven't you tried it yet?
    • πŸ—“οΈThe Essential Retail Calendar for 2025: Plan Your Year Ahead
    • πŸ“…Making the Holidays Hassle-Free: The Importance of Delivery Date
  • CONTACT
    • 🀝Partner with us, bring your vision to life
Powered by GitBook
On this page
  • Outcome
  • Please follow these steps:
  • Step 1. Please copy the following lines of codes
  • Step 2. Go to Shopify settings > Notifications > Customers notifications
  • Step 3. Choose Order confirmation > 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

Was this helpful?

  1. GENERAL SETTINGS
  2. General settings
  3. Email notifications

Order confirmation email

For ones who want to confirm buyer's selected date on confirmation email

PreviousEmail notificationsNextEmail for "Ready for pickup"

Last updated 21 days ago

Was this helpful?

If you have customized your default order confirmation email, selected date may not work, Please contact us for help.

Outcome

Selected date and time is confirmed in Order confirmation email

Please follow these steps:

Step 1. Please copy the following lines of codes

{% 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 > 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

πŸ—“οΈ