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.
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
Where would I put this code?