Quote:
Originally Posted by DoctorEspresso.com
Hi all, I have been looking for the variable to display the date with no luck, can anyone help me with this?
|
The Date is called from many of the email template files, such as:
skin1/mail/html/order_invoice.tpl
Here's the original variable to display the date with time:
{$order.date|date_format:$config.Appearance.dateti me_format}
NOTE - Original generates format: Aug 19, 2007 05:04:27 PM
Here are a few other date variations:
{$order.date|date_format:$config.Appearance.date_f ormat}
NOTE - This generates format: Aug 19, 2007
{$order.date|date_format}
NOTE - This generates format: Aug 19, 2007
{$order.date|date_format:"%D"}
NOTE - This generates format: 08/19/07
Robert