Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

show order id in admin/orders.php


catalepticstate

Recommended Posts

Posted

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

Posted
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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...