Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Displaying order number on /admin/orders.php


2 replies to this topic

#1 JEWbacca

  • Community Member
  • 342 posts
  • Real Name:Nate Levy

Posted 21 April 2005, 22:44

Good Afternoon,

I have a question.

It seems that /admin/orders.php does not show the order number anwhere. Here is a picture of now the /admin/orders.php page look, and then in RED where I think it would be beneficial for the order number to be echoed....

[img]http://www.natelevy.com/uploader/userfiles/Nate/orders.jpg[/img]

Is this possible? Anyone have an idea of what code would need to be inserted into that page's source?

Thanks,

Nate

#2 JEWbacca

  • Community Member
  • 342 posts
  • Real Name:Nate Levy

Posted 22 April 2005, 01:18

I figured it out, if anyone would like to know how to do it...

go to admin/orders.php

find:

<td class="pageHeading" align="right"><?php echo tep_draw_separator('pixel_trans.gif', 1, HEADING_IMAGE_HEIGHT); ?></td>

place this right above it:

<td class="pageHeading"> Online Order # <?php print ($oID); ?></td>

This places it right next to the header that says "Order"

Nate

#3 Dooahhdoo

  • Community Member
  • 12 posts
  • Real Name:Nick

Posted 22 April 2005, 11:00

JEWbacca, on Apr 22 2005, 01:18 AM, said:

I figured it out, if anyone would like to know how to do it...

go to admin/orders.php

find:

<td class="pageHeading" align="right"><?php echo tep_draw_separator('pixel_trans.gif', 1, HEADING_IMAGE_HEIGHT); ?></td>

place this right above it:

<td class="pageHeading"> Online Order # <?php print ($oID); ?></td>

This places it right next to the header that says "Order"

Nate

<{POST_SNAPBACK}>


Excellent. Just what I was looking for :)