Re: Image Handler 2 Support
Since upgrading a few sites to Zen Cart 1.3.8a, I've noticed the additional images aren't showing correctly.
When you click a small additional image, it opens the original large image in the pop up window, not a resized large image from the bmz_cache folder.
Here is an example:
http://bangbangyourethread.com/index...&products_id=3
The main product image pops up an image from the bmz_cache folder; the additional images do not.
Here is a second example:
http://pushtheenvelope.net/index.php...roducts_id=104
http://pushtheenvelope.net/index.php...&products_id=2
I'm including two links here, because I've noticed that all images added before the upgrade work correctly, and all additional images added after the upgrade don't. So product ID #104 (first link) is displaying incorrect behavior, and #2 (second link) is working as it should.
Any ideas? Thanks in advance!
Re: Image Handler 2 Support
Hi,
All my original pictures when I first installed IH work and hover works.
I'm now having a problem adding/replacing images.
I've tried to do it thru IM Manager in the admin, under select actio add new image. I load a default image and save.
Nothing happens, no image.
Any ideas?
Thanks:lookaroun
Re: Image Handler 2 Support
Hi, we're still having the problem below...anyone have any ideas on how to solve this?
Quote:
My client would like to have some very long images in her additional image popups. I found where to add scrollbars to the popup windows so that you can scroll down to see the bottom of a large image. However, in Firefox the window itself is so tall that the bottom is cut off.
Here's an example: the second additional image is the long one.
http://orileydesign.com/index.php?ma...roducts_id=953
I played with includes/modules/pages/popup_image_additional/jscript_main.php but I wasn't able to make the window less tall in Firefox.
Thanks!
Re: Image Handler 2 Support
Genius! Worked for me as well ...
Thank You, zirconx !
Increased the memory_limit parameter in php.ini to 32Mb .
(the problem was that only half a page was rendered)
Re: Image Handler 2 Support
Quote:
Originally Posted by
RedrikShuhart
Genius! Worked for me as well ...
Thank You, zirconx !
Increased the memory_limit parameter in php.ini to 32Mb .
(the problem was that only half a page was rendered)
Either increasing the limit in your .ini file or possibly using an htaccess file to set the memory_limit as well would work. Some host offer either/and/or ...
Re: Image Handler 2 Support
hi i have a problem
i have no idea why it has stopped working it has been working fine all these days basically when i add additional images on a product listing they dont show up instead some lines appear or a rectangle shape has any1 any ideas
http://ashwholesaleworld.com/index.p...products_id=86
this is 1 example see the box it is supposed to be 2 images any help would be appreciated thanks
Re: Image Handler 2 Support
Quote:
Originally Posted by
saaliha
hi i have a problem
i have no idea why it has stopped working it has been working fine all these days basically when i add additional images on a product listing they dont show up instead some lines appear or a rectangle shape has any1 any ideas
http://ashwholesaleworld.com/index.p...products_id=86
this is 1 example see the box it is supposed to be 2 images any help would be appreciated thanks
Have you recently altered any template files? Maybe one that Image Handler needs to function properly ...
Re: Image Handler 2 Support
I'm trying to modify the zoom effect so instead of displaying a larger picture it just shows the product name and price when the user hovers over the small pictures. My programming experience is moderate, so I'm hoping that I can get this figured out with enough messing around. Thought I'd ask here to see if anyone with a bit more experience/familiarity with this mod has any pointers.
As of right now I'm able to hide the picture using css (display: none), but the width of the popup box still seems to be determined by the image size. Once I can adjust the width it will just be a matter of getting the price to display.
So far I haven't but much time into this, but I will post a solution if I'm able to do it.
Re: Image Handler 2 Support
Note: These code changes are purely experimental and I'm posting them in an effort to get help, not to be used as a copy & paste guide.
www (dot) buyers-market (dot) net/zen is the site I'm working on. Of course it's still very much in development, but it will give you an idea of what I'm trying to do.
So far I've been able to specify with width and height of the zoom box by editing these lines in jscript_imagehover.js
Code:
trailobj.style.width=(zoomimgwidth+(2*padding))+"px";
trailobj.style.height=(zoomimgheight+(2*padding))+"px";
to look something like this. I'd like the set them to auto, but IE doesn't like that.
Code:
trailobj.style.width="200px";
trailobj.style.height="75px";
To remove the picture I replaced these two lines
Code:
newHTML = '<div><h1>' + title + '</h1>';
newHTML = newHTML + '<img src="' + imagename + '"></div>';
with this one
Code:
newHTML = '<div><h1>' + title + '</h1></div>';
All of that seems to work fine, but the positioning of the box isn't right. It still seems like its based off the size of the image that would normally be there. So if the "would be image" is small it looks alright, but if its large the box gets bumped out of position. For example the products in Doors -> Exterior works reasonably well where Doors -> Interior are all over the place. The interior door images are much larger, and I'm fairly sure that is what is causing this. Any ideas on how to smooth this out?
Re: Image Handler 2 Support
So I guess that I had to just clear the cache and get rid of the images that were stored from before I made the changes. All seems to be displaying fine now.