I want to remove the time of order from the receipt. The receipt currently displays:
Order Date 1/11/2013 10:22:56PM
I want it to display:
Order Date 1/11/2013
How can I do this?
I want to remove the time of order from the receipt. The receipt currently displays:
Order Date 1/11/2013 10:22:56PM
I want it to display:
Order Date 1/11/2013
How can I do this?
Within the notification.receipt.xml.config file try changing this
<xsl:value-of select="OrderDate" />
to
<xsl:value-of select="aspdnsf:FormatDate(OrderDate,'en-US','dd-MM-yyyy')" />
Back up the file first.