Hi,
I guess this is strictly a question about Order Steps Edition 2, but since jadetrue has kindly pre-integrated this into Cherry Zen I'm hoping that this forum will be full of people who are familiar with this mod.
I'm trying to get the Order Number to appear on the Review Order page. I need to do this as I'm allowing Direct Debit payments into my bank account and I want customers to use the Order Number as a reference when they make the payment. This will make it much easier for me to link up the payment to the order.
I've tracked it down as far as includes/modules/checkout_process.php:
Code:
Line #67 : $insert_id = $order->create($order_totals, 2);
Line #73 : $_SESSION['order_number_created'] = $insert_id;
I tried to put the following in includes/languages/english/modules/payment/dirbank.php:
Code:
"Please use the following details to transfer your total order value:\n\n" .
"\nReference: " . $insert_id .
but it didn't know what $insert_id was so just left a blank.
This example shows the dirbank module, but the question is the same for any payment module.
Has anyone come up against this one before?
Thanks!
Possum.