Hello guys!
Please open the file : componentscom_virtuemartthemesdefaulttemplatescommonminicart.tpl.php and try to find a section code at line 15=>34:
[PHP]
// Loop through each row and build the table
foreach( $minicart as $cart ) {
foreach( $cart as $attr => $val ) {
// Using this we make all the variables available in the template
// translated example: $this->set( ‘product_name’, $product_name );
$this->set( $attr, $val );
}
if(!$vmMinicart) { // Build Minicart
?>
<div style=”float: left;”>
<?php echo $cart[‘quantity’] ?> x <a href=”<?php echo $cart[‘url’] ?>”><?php echo $cart[‘product_name’] ?></a>
</div>
<div style=”float: right;”>
<?php echo $cart[‘price’] ?>
</div>
<br style=”clear: both;” />
<?php echo $cart[‘attributes’];
}
}
[/PHP]
and comment this block:
[PHP]
/*
// Loop through each row and build the table
foreach( $minicart as $cart ) {
foreach( $cart as $attr => $val ) {
// Using this we make all the variables available in the template
// translated example: $this->set( ‘product_name’, $product_name );
$this->set( $attr, $val );
}
if(!$vmMinicart) { // Build Minicart
?>
<div style=”float: left;”>
<?php echo $cart[‘quantity’] ?> x <a href=”<?php echo $cart[‘url’] ?>”><?php echo $cart[‘product_name’] ?></a>
</div>
<div style=”float: right;”>
<?php echo $cart[‘price’] ?>
</div>
<br style=”clear: both;” />
<?php echo $cart[‘attributes’];
}
}
*/
[/PHP]
Good luck