VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: gpessoa on May 12, 2014, 19:05:49 PM

Title: Manufacturer logo on the product detail page
Post by: gpessoa on May 12, 2014, 19:05:49 PM
Hi VM Community
How can I show the manufacturer logo on the product detail page?
Thanks in advanced
J 2.5.20
VM 2.60
Title: Re: Manufacturer logo on the product detail page
Post by: gpessoa on June 06, 2016, 20:50:37 PM
Can this be done?
Title: Re: Manufacturer logo on the product detail page
Post by: GJC Web Design on June 06, 2016, 20:56:58 PM
standard on VM3 -- check the product details templates
Title: Re: Manufacturer logo on the product detail page
Post by: MagikCommerce on June 10, 2016, 16:15:00 PM
Hello,

Please try with following code to get manufacturer thumbnail image.

<?php 
if(!empty($product->virtuemart_manufacturer_id))
{
$manumodel VmModel::getModel('manufacturer');
foreach($product->virtuemart_manufacturer_id as $manufacturer_id)
{
$manumodel->setId($manufacturer_id);
$manufacturer $manumodel->getManufacturer();
$manumodel->addImages($manufacturer);
$thumbImage $manufacturer->images[0]->displayMediaThumb('class="mfg-thumbnail-image"'false);
echo $thumbImage;
}
?>



Thanks