Hi
I am trying to add a few things to the all business template to do with the way products are displayed. Our company bulk sells products and we want to show our products in the pack size like this

12 x Panasonic AA batteries 4 batteries per card £0.46 each

I found it easy enough to create everything up to the each part but get a problem when creating sale items as it looks like this

12 x Panasonic AA batteries 4 batteries per card (£0.46) £0.40
Save: 13% off each

Can someone help me get this in the right place and tell me how to go about adding the total price. i was thinking

$sum_total = $products_quantity_order_min * $price;

print ($sum_total);

This is what i have in my tpl_product_info_display so far

<!--bof Product Name-->
<h1 id="productName" class="productGeneral"> <?php echo $products_quantity_order_min; ?> <?php echo x ?> <?php echo $products_name; ?> <?php
// base price
if ($show_onetime_charges_description == 'true') {
$one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
} else {
$one_time = '';
}
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
?>
<!--bof testing each and whole price-->
<?php echo 'each'; ?>
<?php

$sum_total = $products_quantity_order_min * $price;

print ($sum_total);

?>
</h1>
<?php echo $display_qty = (($flag_show_product_info_in_cart_qty == 1 and $_SESSION['cart']->in_cart($_GET['products_id'])) ? '<p>' . PRODUCTS_ORDER_QTY_TEXT_IN_CART . $_SESSION['cart']->get_quantity($_GET['products_id']) . '</p>' : ''); X ?>
<!--eof Product Name-->