Forum Discussion
- satyaExpert
Hi Tyler,
I don't think so we have any admin setting/Lithium OOB component to change the date format as per your mentioned requirement. You may need to use freemarker/javascript for your use case.
Give kudos if you find my posts helpful or mark as solution if it answers your query.
Thanks,
Srujana Satya Hi Tyler Try this one
<#assign getDate = rest("2.0","search?q=" + "select post_time from messages limit 1"?url).data.items![] /> <#list getDate as dt> ${dt.post_time?datetime?string}
${dt.post_time?date?string("MMM d, YY")} </#list>Here is the setting path Admin > System > Date & Time
Some free marker date manipulation functions are here as well.
Related Content
- 8 years ago
- 9 months ago
- 7 months ago