By slayerment on
Using ecommerce 3.x.
Is there a way to display the customers order after they purchase an item? Right now it takes them to the home page and displays no message or anything. It would be great if it could redirect them to the order they just made and include some type of message.
Thanks!
Comments
Ecommerce feedback
I'm working on this as I write.
The trouble is I'm not totally sure about some fundamentals of how Drupal works so just hack away. Hopefully the new Drupal book will let me peek under the bonnet with some proper insight.
I really need to get the admin>store>transaction invoice to email as it contains much more detail that the default customer version and I'd like to display it on screen for the customer to print after payment too.
I did read last night that there is a method for the unregistered anonymous customer to display their order details - but then read a retraction immediately afterwards!
So I can't offer a solution just now - only my support!
Ian
There must be a way....
There must be a way that other people have done this.
I need the same thing and have been on the same path as cinquetooty, but am sure there is a more obvious way to handle this standard piece of the payment process.
'(Òvó)
Sorted (sort of)....
I've been modifying a version of the worldpay module to work with secpay. The important bit is where the 'payment successful' callback is made - where I added:
//========================================================================= display the invoice
$txn = store_transaction_load($txnid);
$output .= theme_store_invoice($txn, $print_mode = FALSE, $trial = FALSE);
//=========================================================================