Shopify themes, liquid, logos, and UX
Hello,
can I have a code for Estimate prep time , dispatch date and estimated delivery date. (As Shown in Below image ).
which can be added to product page . I think it can be achieved by metafields , but needed assistance with code . Thanks .
Hi @nithinknsk ,
To display the range date create another meta field "Range Date For Delivery" and replace your code with the below code. Also, Replace the meta field code for "product.metafields.custom.range_date_for_delivery" with your meta field.
Here is the reference code:
{% if product.metafields.custom.number_of_days_for_delivery_ != blank %}
<div class="delivery-date">
<p><b>Estimated Delivery Date:</b></p>
<div id="m-date">
{% if product.metafields.custom.range_date_for_delivery != blank %}
{% assign range_date_add = product.metafields.custom.range_date_for_delivery | date: "%s" | times: 86400 %}
{% assign range_date = 'now' | date: "%s" | plus: range_date_add | date: "%d %b" %}
{% endif %}
{% assign days_to_add = product.metafields.custom.number_of_days_for_delivery_ | date: "%s" | times: 86400 %}
{% assign future_date = 'now' | date: "%s" | plus: days_to_add | date: "%d %b" %}
{% if range_date %} {{ range_date | append: ' to ' }} {% endif %} {{ future_date }}
</div>
</div>
{% endif %}
If you require further help to optimize or customize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
LuffyOnePiece
hi @LuffyOnePiece
thank you for your response but .
I need to achieve it more specific product page ( like as shown below ).
Order placed ----3 days------dispatch date-----(4-6 days)---- delivery date .
(today date ) (4 - Apr) (8 Apr - 10Apr).
like this .
can you suggest me
Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024Hey Community! It’s time to share some appreciation and celebrate what we have accomplis...
By JasonH Nov 14, 2024In today’s interview, we sat down with @BSS-Commerce to discuss practical strategies f...
By JasonH Nov 13, 2024