I'm still getting the IE errors myself. I'm about ready to get rid of IH. I'd rather have a page that loads slow than one where you constantly have errors popping up.
Printable View
I'm still getting the IE errors myself. I'm about ready to get rid of IH. I'd rather have a page that loads slow than one where you constantly have errors popping up.
My IH2 works fine with zen cart 1.3.5
Well I'll be darned....I think I fixed it! *yay*
I had to change line 124 instead of 126.
what was your problem
which file did you edit
what change to line 124
problem: zoomed image goes out of browser bounds generating js error
problem code, filename: jscript_imagehover.js
change line: 123 if statement >>
if (docheight - event.clientY < zoomimg_h + (2 * padding)){
ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + event.clientY - docheight - truebody().scrollTop));
// ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + e.pageY - docheight - truebody().scrollTop));
} else {
// ycoord += truebody().scrollTop + event.clientY;
ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + event.clientY - docheight - truebody().scrollTop));
}
Revert back to your old file, and then only apply the change to line 124 (not 126 like the author stated). I couldn't remember the exact line numbers which needed to be changed, thanks to g pointing it out to me above.Quote:
Originally Posted by neuzen
So it should read:
Code:if (docheight - event.clientY < zoomimg_h + (2 * padding)){
ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + event.clientY - docheight - truebody().scrollTop));
// ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + e.pageY - docheight - truebody().scrollTop));
} else {
ycoord += truebody().scrollTop + event.clientY;
}
Sorry I just got back home, but what Getyourgameshere said is what has to be done. :-)
Using ZC1.3.5 with image_handler__for_vx_2.0135 dowloaded from the ZC downloads area it seems to work just fine except I don't get the desired watermarks on images in productlistings. Productinfo and sideboxes do show watermarks.
Anyone else experience this and found out why?
Thanks for the 135 updates!
NOTE:
There seems to be a missing closing tag [?>] at the bottom of this file [additional_images.php] in the download I just got off the Zen-Cart site
\image-handler_2.0-zc135\includes\modules
Yeah I get the same message that i'm trying to wk through. Have you modified your site?Quote:
Originally Posted by kelvyn