hi
I am using debut theme. I added the following code in the product-template.liquid.
Commandez maintenant pour une livraison entre et
{{ '//cdnjs.cloudflare.com/ajax/libs/datejs/1.0/date.min.js' | script_tag }}
It shows
Commandez maintenant pour une livraison entre Tuesday April 23rd et Monday April 8th.
But I want the result as
Commandez maintenant pour une livraison entre dddd/mm/yyyy et dddd/mm/yyyy.
What should i do? Tks
Try This code

Commandez maintenant pour une livraison entre
**et**
{{ '//cdnjs.cloudflare.com/ajax/libs/datejs/1.0/date.min.js' | script_tag }}
Hi @Calisto
You can do that by update code to this

Commandez maintenant pour une livraison entre
**et**
{{ '//cdnjs.cloudflare.com/ajax/libs/datejs/1.0/date.min.js' | script_tag }}
1 Like