Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: How do you remove Time of order from Receipt

  1. #1
    knivestown is offline Junior Member
    Join Date
    Jun 2011
    Posts
    19

    Question How do you remove Time of order from Receipt

    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?

  2. #2
    Skriver is offline Senior Member
    Join Date
    Apr 2012
    Posts
    188

    Default

    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.