Display the estimated delivery date in the order page.
1.Go to the App settings -> Navigate to Display ETA on order page and click on Configure.

2.Go to order liquid file and place the code below as per guideline provided
{% for p in line_item.properties %}
{% assign property = p.first | rstrip %}
{%- if property == 'Estimated Delivery' -%}{{ p.first}} : {{ p.last }}{% endif %}
{% endfor %}

3.Save the changes and see result.
If have any question need further help feel free reach out to us!

2.Go to order liquid file and place the code below as per guideline provided
{% for p in line_item.properties %}
{% assign property = p.first | rstrip %}
{%- if property == 'Estimated Delivery' -%}{{ p.first}} : {{ p.last }}{% endif %}
{% endfor %}

3.Save the changes and see result.
If have any question need further help feel free reach out to us!
Updated on: 22/11/2024
Thank you!