A crude, but quick way is to HARD CODE this into:-
tpl_shopping_cart.php
( original file in /template_default/sideboxes/, so save edited version to /your_template/sideboxes/ ).
FIND (around line 40 or so):
Code:
if ($_SESSION['cart']->count_contents() > 0) {
$content .= '<hr />';
$content .= '<div class="cartBoxTotal">' . $currencies->format($_SESSION['cart']->show_total()) . '</div>';
$content .= '<br class="clearBoth" />';
}
EDIT TO THIS
Code:
if ($_SESSION['cart']->count_contents() > 0) {
$content .= '<hr />';
$content .= '<div class="cartBoxTotal">Total: ' . $currencies->format($_SESSION['cart']->show_total()) . '</div>';
$content .= '<br class="clearBoth" />';
}