Hi,
Well ; I don't know what the parameter $size contain in your website but I think the best will be to update the Helper image to manage it.
By replacing in the file "administrator/components/com_hikashop/helpers/image.php" the code
if(empty($size))
$size = array('x' => (int)$config->get('thumbnail_x', 100), 'y' => (int)$config->get('thumbnail_y', 100));
By
if(empty($size) || !is_array($size) || (!isset($size['x']) && !isset($size[0])))
$size = array('x' => (int)$config->get('thumbnail_x', 100), 'y' => (int)$config->get('thumbnail_y', 100));
It should fix your issue.
Regards,