I have made an addition to the cart module to display the images of the products.
Go to components/com_virtuemart/helpers/cart.php
Line 1769
Add:
$data->products[$i]['image'] = $product->images[0];
So that the final Result is:
$data->products[$i]['image'] = $product->images[0];
$data->products[$i]['product_sku'] = $product->product_sku;
Then go to modules/mod_virtuemart_cart/tmpl/default.php
Line 31
Add:
<span class="image"><img src="<?php echo $product['image']->getFileUrlThumb(); ?>" alt="" /></span></br>
So that the final Result is:
<span class="image"><img src="<?php echo $product['image']->getFileUrlThumb(); ?>" alt="" /></span></br>
<span class="quantity"><?php echo $product['quantity'] ?></span> x <span class="product_name"><?php echo $product['product_name'] ?></span>