I found this old post:
www.hikashop.com/forum/4-how-to/46848-li...instead-of-page.html
where the correction to be made on the listing_img_title page in the Hikashop version 2.6.3.
I changed this code:
//$img = $this->image->getThumbnail(
// @$this->row->file_path,
// array('width' => $this->image->main_thumbnail_x, 'height' => $this->image->main_thumbnail_y),
// array('default' => true, 'forcesize' => $this->config->get('image_force_size', true), 'scale' => $this->config->get('image_scale_mode', 'inside'))
// );
// if($img->success) {
// echo '<img class="hikashop_product_listing_image" title="'.$this->escape(@$this->row->file_description).'" alt="'.$this->escape(@$this->row->file_name).'" src="'.$img->url.'"/>';
// }
with this:
echo $this->image->display(@$this->row->file_path,true,$this->escape($this->row->file_name), '' , '' , $this->image->main_thumbnail_x, $this->image->main_thumbnail_y);
and it seems to work.
Thank you