Page 277 of 710 FirstFirst ... 177227267275276277278279287327377 ... LastLast
Results 2,761 to 2,770 of 7099
  1. #2761
    Join Date
    Mar 2005
    Posts
    174
    Plugin Contributions
    0

    Default 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!

  2. #2762
    Join Date
    Mar 2008
    Posts
    38
    Plugin Contributions
    0

    Default 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

  3. #2763
    Join Date
    Aug 2005
    Posts
    62
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Hi, we're still having the problem below...anyone have any ideas on how to solve this?

    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!

  4. #2764
    Join Date
    Oct 2007
    Location
    Israel, Tel-Aviv
    Posts
    3
    Plugin Contributions
    0

    Default 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)
    Last edited by RedrikShuhart; 16 Jun 2008 at 01:59 PM.

  5. #2765
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by RedrikShuhart View Post
    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 ...

  6. #2766
    Join Date
    May 2008
    Posts
    27
    Plugin Contributions
    0

    Default 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

  7. #2767
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by saaliha View Post
    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 ...

  8. #2768
    Join Date
    May 2008
    Posts
    34
    Plugin Contributions
    0

    Default 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.

  9. #2769
    Join Date
    May 2008
    Posts
    34
    Plugin Contributions
    0

    Default 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?
    Last edited by jaydee98273; 19 Jun 2008 at 10:12 PM. Reason: Typo

  10. #2770
    Join Date
    May 2008
    Posts
    34
    Plugin Contributions
    0

    Default 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.

 

 

Similar Threads

  1. v150 Image Handler 4 (for v1.5.x) Support Thread
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1684
    Last Post: 2 Oct 2022, 06:55 AM
  2. v139h Image Handler 3 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1095
    Last Post: 2 Oct 2017, 12:42 PM
  3. Image Handler Support Please
    By nadinesky in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 30 Sep 2013, 03:47 PM
  4. Image handler only covers part of screen
    By shaneburton in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 14 May 2009, 07:15 PM
  5. Is Image Handler the only way to go?
    By wwwursa in forum Installing on a Windows Server
    Replies: 2
    Last Post: 23 Dec 2007, 09:22 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR