Hello.
It should be on the page at the miniature category product output alt and titile, equal product name. I found in the template (/com_virtuemart/views/category/tmpl/default.php):
<a title="<?php echo $product->product_name ?>" rel="vm-additional-images" href="<?php echo $product->link; ?>">
<?php
echo $product->images[0]->displayMediaThumb('class="browseProductImage" ', false);
?>
</a>
How can I do it?
VM 2.0.26
okay, i found
if (!empty($product->images[0])) {
if ( empty( $product->images[0]->file_meta ) ) {
$product->images[0]->file_meta = htmlspecialchars($product->product_name);
}
}