Thanks for the feedback dinosoup,

Originally Posted by
dinosoup
However, I found something, not sure if it's a bug or intentional. When I set "Image - Use Proportional Images on Products and Categories" to false in the backend, then EZ thumbnails does not seem to kick in.
I took a quick look, and it seems like it's intentional.
This piece of Zen Cart core code in html_output.php disables the hook to external image handlers (like EZ thumbnails)
Code:
// use old method on template images
if (strstr($src, 'includes/templates') or strstr($src, 'includes/languages') or PROPORTIONAL_IMAGES_STATUS == '0') {
return zen_image_OLD($src, $alt, $width, $height, $parameters);
}
And when the hook is disabled EZ thumbnails is disabled too.