I used this code beneath in "../components/com_virtuemart/views/category/tmpl/default.php" but only the first category image shows up. Where do i go wrong? thank you!
<?php
// List all Images
if (count($this->category->images) > 0) {
foreach ($this->category->images as $image) { // Loop through the results
$ImgLink = $image->file_url;
$ImgTitle = $this->category->category_name;
echo '<img src="'.$ImgLink.'" alt="" title="'.$ImgTitle.'" />';
}
}
?>
do you want CATEGORY IMAGE?
OR PRODUCT IMAGE?