Announcement

Collapse
No announcement yet.

Order received confirmation page at end of checkout

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Order received confirmation page at end of checkout

    Is there a way to flash up a screen at the end of the checkout that says something like:

    "many thanks for placing an order - your goods will be despatched shortly"

    so that the customer is sure the transaction has been processed.

    I know that they receive a receipt from the PSP but the majority of customers pay via invoice with order and at the end of the checkout - just bounce back into the catalog.

    #2
    Hi Michael,

    I will ask development this question. I pretty sure its similar to http://community.actinic.com/showthread.php?t=1567, but you will be editing the "OrderScript.pl" file instead. By way please could you let me know what version of Actinic are you running?

    Kind Regards
    Last edited by Nadeem; 02-Jun-2005, 02:19 PM. Reason: Adding more information
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Hi there

      Here is the solution

      Edit OrderScript.pl
      Search for 'sub ProcessInput'
      Then search for 'BounceToPagePlain'
      You should see...

      @Response = ACTINIC::BounceToPagePlain(0, undef, undef,

      Replace the above with...

      # @Response = ACTINIC::BounceToPagePlain(0, undef, undef,
      $::g_sWebSiteUrl,
      my $sText = "Thanks for buying";
      my $nDelay = 5;
      @Response = ACTINIC::BounceToPagePlain($nDelay, $sText, undef,
      $::g_sWebSiteUrl,

      In the above replace 'Thanks for buying' with the required message, can
      include HTML. Also adjust $nDelay as required.

      Save, exit and update the site.

      Kind Regards
      Nadeem Rasool
      SellerDeck Development

      Comment

      Working...
      X