Hello everyone, is there any way that the confirmation email for the client to take the images of the products you are asking ?, Where you can modify or what pluging should I use, thank you very much.
over ride to your template \html\com_virtuemart\invoice\mail_html_pricelist.php
and in the product loop do something like
$product = $model->getProductSingle($item->virtuemart_product_id,false);
$model->addImages($product);
$image = $product->images[0];
and display with
<span class="img-thumbnail"><?php echo $image->displayMediaThumb ('', FALSE, '', TRUE, FALSE, TRUE, 80, 80); ?></span>
there might be a better way