Yes..many thanks....that works for those situations where a customer has ordered one of each item and is a big help for most circumstances....Is there also a way to have it reflect the total number of items purchased where the customer may have ordered more than one of certain items?
Also just to be clear for others who are looking at this thread, here is what I did:
In admin/includes/languages/english/packingslip.php I added a line:
PHP Code:
define('ITEMS_PURCHASED', 'Number of Items Ordered:');
In admin/packingslip.php I added the following after similar language showing the payment method so that the number of items would show just below that information in the packing slip:
PHP Code:
<tr>
<td class="main"><strong><?php echo ITEMS_PURCHASED; ?></strong></td>
<td class="main"><?php echo sizeof($order->products); ?></td>
</tr>