VirtueMart Forum

VirtueMart 2 + 3 + 4 => Administration & Configuration => Topic started by: bob30 on September 21, 2014, 16:06:36 PM

Title: Show product image by id of product
Post by: bob30 on September 21, 2014, 16:06:36 PM
Hello. I wanat display product image on homepage without other parts of product. How can i modify this:   <?php foreach($this->product->images as $image) { 
$i++; ?>

<div id="tab_<?php echo $i?>" class="tab-pane<?php echo $i==1?' active':''?>">
<?php
// echo $image->displayMediaFull("",true,"rel='vm-additional-images'");
echo $image->displayMediaThumb("",true,"rel='vm-additional-images'");
?>

</div>
<?php ?>
Thanks