catalepticstate Posted April 30, 2008 Posted April 30, 2008 hi, I would like to know how I can show "order id" in admin/orders.php orders list.
dmnalven Posted April 30, 2008 Posted April 30, 2008 You need to add a table cell for the heading, and fill its content cell: About line #365, in the table heading cells, after the echo TABLE_HEADING_CUSTOMERS call (if this is the order you wish): <td class="dataTableHeadingContent" align="right">Order ID</td> And at about line #419, after the customer name echo cell: <td class="dataTableContent" align="right"><?php echo strip_tags($orders['orders_id']); ?></td> For ALL problems, please review this link first -> osCommerce Knowledge Base
catalepticstate Posted April 30, 2008 Author Posted April 30, 2008 You need to add a table cell for the heading, and fill its content cell: About line #365, in the table heading cells, after the echo TABLE_HEADING_CUSTOMERS call (if this is the order you wish): <td class="dataTableHeadingContent" align="right">Order ID</td> And at about line #419, after the customer name echo cell: <td class="dataTableContent" align="right"><?php echo strip_tags($orders['orders_id']); ?></td> Brilliant! Thank you :thumbsup: Will try tomorrow, bad day today.
dmnalven Posted April 30, 2008 Posted April 30, 2008 Make that first addition at about line #388 (cursor was at begining of page :-) For ALL problems, please review this link first -> osCommerce Knowledge Base
Recommended Posts
Archived
This topic is now archived and is closed to further replies.