tbray Posted February 17, 2004 Share Posted February 17, 2004 Hi: I'm wondering what I alter to print (echo?) an invoice number here: --orders.php?selected_box=customers&status-- which is the customer order status screen that shows a particular order. I'd like the order number to appear, perhaps after the telephone number.. Thanks! Thom Link to comment Share on other sites More sharing options...
Guest Posted February 18, 2004 Share Posted February 18, 2004 Simple one... find this in admin/orders.php: <tr> <td class="main"><b><?php echo ENTRY_TELEPHONE_NUMBER; ?></b></td> <td class="main"><?php echo $order->customer['telephone']; ?></td> </tr> Add this after it: <tr> <td class="main"><b><?php echo ENTRY_INVOICE_ID; ?></b></td> <td class="main"><?php echo tep_db_input($oID); ?></td> </tr> And then define ENTRY_INVOICE_ID in the language file. HTH Link to comment Share on other sites More sharing options...
tbray Posted February 18, 2004 Author Share Posted February 18, 2004 Thank you, that did it! :D Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.