Greetings.
I'm trying to make a rollover image on the category view, since i could not find an extension that can do that on VM3.
I was trying to at least make that second image visible so i can make the rollover command.
I'm around the moment on the sublayout override based on sublayouts/products.php around the line 88 where that image is loaded
<div class="vm-product-media-container">
<a title="<?php echo $product->product_name ?>" href="<?php echo $product->link.$ItemidStr; ?>">
<?php
//echo $product->images[0]->displayMediaThumb('class="browseProductImage"', false);
echo $product->images[0]->displayMediaThumb('class="browseProductImage"', false);
//echo $product->customfieldsSorted->display->displayMediaThumb('class="browseProductImage"', false);
?>
</a>
</div>
I was trying to load an image custom field since the product array on the only calls the first image since "supposedly" only has the main image. I loaded the array and tried to find the image but i don't know why the display media thumb does not load the image, so i can arrange as html/php string the rollover image.
I would like any help you can provide me.
Thanks in advance.