Hello - Looking the correct liquid code to add to the Confirmation Email. Most of the store’s products are digital products (and are delivered through Book Funnel not through Shopify Digital Products) but we do have some physical as well. I’m looking to add code so that I can put in a specific message for all orders that either ONLY contain E-books or contain some E-books and some physical that will be shipped. In the default template I only see code regarding if it requires shipping. What can I add below for something if it doesn’t require shipping?
Thanks for the help! I’m awful at thinking the way you need to for code!
{% capture email_title %}Thank you for your purchase! {% endcapture %}
{% capture email_body %}
{% if requires_shipping %}
{% case delivery_method %}
{% when ‘pick-up’ %}
You’ll receive an email when your order is ready for pickup.
{% when ‘local’ %}
Hi {{ customer.first_name }}, we’re getting your order ready for delivery.
{% else %}
Hi {{ customer.first_name }}, we’re getting your order ready to be shipped. We will notify you when it has been sent.
{% endcase %}
{% if delivery_instructions != blank %}
Delivery information: {{ delivery_instructions }}
{% endif %} {% if consolidated_estimated_delivery_time %}Estimated delivery {{ consolidated_estimated_delivery_time }}
{% endif %} {% endif %} {% endcapture %}