If you want all images to be the same size, just change the getResizedUrl() function in your hook from:
to:
Or whatever you want ...
PHP Code:
$path_r = \ImCatalog\Util::getResizedUrl($currentItem,
$key,
$this->processor->config->itemDetailsImageSizes[$key]['w'],
$this->processor->config->itemDetailsImageSizes[$key]['h'],
'resize'
);
to:
PHP Code:
$path_r = \ImCatalog\Util::getResizedUrl($currentItem,
$key,
$this->processor->config->itemDetailsImageSizes[0]['w'],
$this->processor->config->itemDetailsImageSizes[0]['h'],
'resize'
);
Or whatever you want ...