Hello,
1. And can you try to remove your product image and then upload it again ?
2. Also regarding the error that you had when you tried to delete your product image you'll have the edit the "administrator\components\com_hikashop\classes\product.php" file and change these lines :
$this->database->setQuery('SELECT file_path FROM '.hikashop_table('file').' WHERE file_path IN ('.implode(',',$oldFiles).') AND (file_ref_id != '.$status.' OR file_id IN ('.implode(',',$element->$type).'))');
By :
$filter = '';
if(!empty($element->$type) && count($element->$type))
$filter = ' OR file_id IN ('.implode(',',$element->$type).')';
$query = 'SELECT file_path FROM '.hikashop_table('file').' WHERE file_path IN ('.implode(',',$oldFiles).') AND (file_ref_id != '.$status.$filter.')';
$this->database->setQuery($query);