
Originally Posted by
trippy1976
I found how to change the medium image. It's the Product Info - width and height parameters under admin-->config-->images
Bad news is I have to re-do my template if I want my medium images to be larger :) Guess it uses the same on the IH zoom as it does in the product images space on an item's listing. Which blows out my template. Oh well :)
Don't know if someone else has figured this out yet, but if you want your small images' zoom to use the large image (instead of the medium) I figured out how to do that (see at www.zencart136.jadetrue.com). Open up includes/classes/bmz_handler.class.php and find aprox line 691:
Code:
$zoom_sizetype = ($this->sizetype=='small')?'medium':'large';
to
Code:
$zoom_sizetype = ($this->sizetype=='large')?'medium':'large';
Hope that helps some!
Bookmarks