News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Image alt - product name in category page

Started by GoodSanta, December 23, 2015, 19:45:58 PM

Previous topic - Next topic

GoodSanta

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

GoodSanta

okay, i found

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