by loren_d_c » Fri Feb 25, 2011 9:50 am
You can add [-- STORE.Date --] and/or [-- STORE.Time --] to the DEFINE THANKYOU section of your custom shopping cart template.
[-- STORE.Date --] results in the server date in a format like 'Fri Feb 25, 2011'.
[-- STORE.Time --] results in the server time in a format like '09:44:38'.
So you could do something like:
Order completed at: [-- STORE.Time --] [-- STORE.Date --]
If you want it in a different format, you would have to output it in the middle of some custom JavaScript and massage the format with your JavaScript code.
-Loren