VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: Depson on December 18, 2012, 19:40:29 PM

Title: Manufacturer name on category page
Post by: Depson on December 18, 2012, 19:40:29 PM
Hi Everybody,

Do you know how to add a manufacturer name in every product on category page? (like proce, title or thumbnail) ? I`ve trying with " <?php echo $this->product->virtuemart_manufacturer_id ; ?>" but it doesn`t work.

Thanks a lot, regards,
D.
Title: Re: Manufacturer name on category page
Post by: bytelord on December 18, 2012, 20:03:38 PM
Hello,

For the manufacturer name please use: <?php echo $product->mf_name ; ?>

For the manufacturer id use: <?php echo $product->virtuemart_manufacturer_id ; ?>

in category view for product we use $product and not $this->product.

Please take a look over here:
$this vs $product: http://forum.virtuemart.net/index.php?topic=100696.0
Category Fields: http://forum.virtuemart.net/index.php?topic=97744.0
Product Fields: http://forum.virtuemart.net/index.php?topic=92756.0

Regards
Title: Re: Manufacturer name on category page
Post by: elleclouds on December 13, 2015, 21:36:45 PM
Where would I put this code?