You would have to customize the files for:
/admin/invoice.php
/admin/packingslip.php
The change on the shipping text in the totals from the method actually used to just text would require changing the section around:
To change the order of the addresses, look for:Code:<?php for ($i = 0, $n = sizeof($order->totals); $i < $n; $i++) { echo ' <tr>' . "\n" . ' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Text">' . $order->totals[$i]['title'] . '</td>' . "\n" . ' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Amount">' . $order->totals[$i]['text'] . '</td>' . "\n" . ' </tr>' . "\n"; } ?>
zen_address_format
And you will see 3 sets:
$order->customer
$order->billing
$order->delivery
Change the order on them to match what you want ...
NOTE: Make an Order with 3 different addresses to test this so you do not goober things up ...
You might add border="1" to some of the tables to help you arrange where to add the text that you want ...





