In the downloads section, I found an add-on titled "Shopping Cart Original Price", which will show the original price of a product in the shipping cart (with a line through it) when the item is on special or affected by a sale.

Now, on the admin side of things, in order.php, when you are looking at a specific order, I would like to have the same thing in the "Price (Ex)" column.

So if the price is normally $40 dollars, it shows $40 in that column. But if the product is on sale for $35, that column shows $35 ([s]$40[/s]).

The code for this column is located in Admin/orders.php on line between 489 & 492. I know that much, I just don't know what to change it to so that it shows like I am wanting it to show. Here is the specific code (if it helps).

Code:
<td class="dataTableContent" align="right" valign="top"><strong>' .
                          $currencies->format($order->products[$i]['final_price'], true, $order->info['currency'], $order->info['currency_value']) .
                          ($order->products[$i]['onetime_charges'] != 0 ? '<br />' . $currencies->format($order->products[$i]['onetime_charges'], true, $order->info['currency'], $order->info['currency_value']) : '') .
                        '</strong></td>' . "\n"