VirtueMart Forum

VirtueMart 2 + 3 + 4 => Product pricing => Topic started by: GoodSanta on December 23, 2015, 19:45:58 PM

Title: Image alt - product name in category page
Post by: GoodSanta on December 23, 2015, 19:45:58 PM
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
Title: Re: Image alt - product name in category page
Post by: GoodSanta on December 23, 2015, 20:12:52 PM
okay, i found

if (!empty($product->images[0])) {
if ( empty( $product->images[0]->file_meta ) ) {
  $product->images[0]->file_meta = htmlspecialchars($product->product_name);
}
}