Yes, I found it, and searched for "total".
Line 47
<div class="total" style="float: right;">
<?php if ($data->totalProduct and $show_price) echo $data->billTotal; ?>
</div>
<div class="total_products"><?php echo $data->totalProductTxt ?></div>
<div class="show_cart">
<?php if ($data->totalProduct and $show_price) echo $data->cart_show; ?>
</div>
<div style="clear:both;"></div>
<noscript>
<?php echo JText::_('MOD_VIRTUEMART_CART_AJAX_CART_PLZ_JAVASCRIPT') ?>
</noscript>
</div>
<?php }else{ ?>
<!-- Default of smart -->
<div class="vmCartModule <?php echo $params->get('moduleclass_sfx'); ?>" id="vmCartModule">
<h3 class="title"><a href="index.php?option=com_virtuemart&view=cart">
<?php echo JText::_('MOD_VIRTUEMART_CART_YOUR_CART_MESSAGE') ?>
</a></h3>
<?php
if ($show_product_list) {
?>
<div id="hiddencontainer" style=" display: none; ">
<div class="container">
<?php if ($show_price) { ?>
<div class="prices" style="float: right;"></div>
<?php } ?>
<div class="product_row">
<span class="quantity"></span> x <span class="product_name"></span>
</div>
<div class="product_attributes"></div>
</div>
</div>
<div class="vm_cart_products">
<div class="container">
<?php
foreach ($data->products as $product)
{
if ($show_price) { ?>
<div class="prices" style="float: right;"><?php echo $product['prices'] ?></div>
<?php } ?>
<div class="product_row">
<span class="quantity"><?php echo $product['quantity'] ?></span> x <span class="product_name"><?php echo $product['product_name'] ?></span>
</div>
<?php if ( !empty($product['product_attributes']) ) { ?>
<div class="product_attributes"><?php echo $product['product_attributes'] ?></div>
<?php }
}
?>
</div>
</div>
<?php } ?>
<div class="total_products">(<?php echo $data->totalProductTxt ?>)</div>
From this, I still don't see the solution. Is there missing something?
You can find an attachment about current cart-view.
And I have another peoblem. When I add a product to the cart, I have to click on Continue shopping or Show cart. The product doesn't occur in the cart until page does not reload/refresh.
I'm planning to make a setTimeout, to avoid unnecessary clicks. However I don't know, if it will have some influence on showing added products in cart.
[attachment cleanup by admin]