When I use X_ITEMS_FOR_X that displays for items in cart which is fine. I have that in use. When I use TOTAL_IN_CART_X nothing happens. I only get results if I use PRICE_BEGINNING for the mini cart. I am trying to get TOTAL: in front of the price.
The code in the listing_price.php states PRICE_BEGINNING
<?php
if(empty($this->row->prices)){
echo JText::_('FREE_PRICE');
}else{
$first=true;
echo JText::_('PRICE_BEGINNING');
$i=0;....
Is there a way to just get "TOTAL:" to show in the mini cart only and nowhere else?