VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: djanael on May 04, 2019, 15:39:45 PM

Title: How to show Thumbnails in invoice_items.php ?
Post by: djanael on May 04, 2019, 15:39:45 PM
How to make this?
Title: Re: How to show Thumbnails in invoice_items.php ?
Post by: GJC Web Design on May 04, 2019, 19:59:59 PM
in the loop something like


$image = '';
$product = $model->getProductSingle($item->virtuemart_product_id,false);
            $model->addImages($product);
            $image = $product->images[0];

then

<span class="img-thumbnail"><?php echo $image->displayMediaThumb ('', FALSE, '', TRUE, FALSE, TRUE, 80, 80);  ?></span>