Hello,
I’m trying to set up the confirmation email for pick up in store but when adding the liquid required, the confirmation emails keeps showing both messages (shipping and pick up). Since the code is a condition “if” I guess there must be a way to only show one of the 2 options depending on what buyers select.
Please see my code below:
{% capture email_title %}Thank you for your purchase! {% endcapture %}
{% capture email_body %}
{% if requires_shipping %}
Hi {{ customer.first_name }}, we will notify you when your order has shipped.
Please allow 2 to 3 weeks for processing at this time.
Thank you for shopping with us, we can’t wait for your order to arrive!
{% endif %}
{% if order.pickup_in_store? %}
Hi {{ customer.first_name }}, we’ll notify you as soon as your order is ready for pickup! Our current store pickup hours are 10am - 5:30pm on Monday through Friday. Please be prepared to show your order confirmation while picking up within 7 days of purchase at 315 S. Robertson Blvd., 90048. We’ll see you there!
{% endif %}
{% endcapture %}
I hope you can help me,
Paula