Page 374 of 710 FirstFirst ... 274324364372373374375376384424474 ... LastLast
Results 3,731 to 3,740 of 7099
  1. #3731
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    814
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I totally should have known that. Thank you. Works fine now. I use " because I don't like the slanted dblQuotes that ″ gives ya.

    Thanks again,
    John

  2. #3732
    Join Date
    Jul 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Ok I'm giving IH2 one more shot. Some features seems to work but I still have red x's on the images that are PNG files. What can I do to fix this? Here's an example so you see what I mean:

    http://treasuredscraps.com/store/ind...dex&cPath=93_7

  3. #3733
    Join Date
    Jul 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Oh yeah and only the items in the sideboxes seem to be hovering. The images under a specified category don't hover. How can I fix this?

  4. #3734
    Join Date
    Feb 2009
    Posts
    210
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I am using Zen Lightbox 4 with Image Handler 2.

    I can hover over a small image in Firefox and it shows up large but in Internet Explorer nothing shows and it says there is an error on the page.

    The error is this.

    Page Y is null or not an object Line24
    jscript_imagehover.js

    This is located in my template and i use Watermelon template.

    How does one fix this issue with Internet Explorer ?

  5. #3735
    Join Date
    Jul 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I had to turn mine off because customers were complaining about the Red X's so the link above won't work now. If some can help me please let me know. Someone suggested the problem is that some of my manufacturers have previews that are png while some are jpg and others that are gif. I may just have to kiss this idea goodbye

  6. #3736
    Join Date
    Apr 2008
    Posts
    154
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    yeah, i have toe same problem and no one here had any good suggestions.. all jpg and gif files work fine but png files just don't work with this software.
    Website Developer and Search Engine Optimazation Boise Idaho. Details at BoiseWired.com

  7. #3737
    Join Date
    Jan 2007
    Location
    1.5 miles from Home
    Posts
    674
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by honrheart View Post
    Ok I'm giving IH2 one more shot. Some features seems to work but I still have red x's on the images that are PNG files. What can I do to fix this? Here's an example so you see what I mean:

    http://treasuredscraps.com/store/ind...dex&cPath=93_7
    Quote Originally Posted by tyankee View Post
    yeah, i have toe same problem and no one here had any good suggestions.. all jpg and gif files work fine but png files just don't work with this software.
    Is your png files 16 or 32 bits?

    Also have you tried to change the png file to gif or jpegs?
    Instead of saving image files from your graphic program as png, choose jpeg.

    Ok, You did read the manual?
    You do know that IH can change the image format for you?
    (gif, jpeg, png)
    You can select what format for each image size.

  8. #3738
    Join Date
    Jan 2007
    Location
    1.5 miles from Home
    Posts
    674
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by need_help View Post
    I am using Zen Lightbox 4 with Image Handler 2.

    I can hover over a small image in Firefox and it shows up large but in Internet Explorer nothing shows and it says there is an error on the page.

    The error is this.

    Page Y is null or not an object Line24
    jscript_imagehover.js

    This is located in my template and i use Watermelon template.

    How does one fix this issue with Internet Explorer ?
    You can try this.
    http://www.zen-cart.com/forum/showth...658#post517658

  9. #3739
    Join Date
    Feb 2009
    Posts
    210
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by tophand View Post
    Excellent.

    That fixed the issue and it works with Internet Explorer 8 as well as 7 for those that are interested.

    Now i just need to get image handler to zoom on the sub categories images if thats possible - Where it says for example showing 5 of 46 products etc etc. I have five images per page and no zoom for them.

    Ill try a search of the thread.

  10. #3740
    Join Date
    Feb 2009
    Posts
    210
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by capnhairdo View Post
    Hi,

    Just installed IH2 on our 1.3.7.1 cart and it's working great. Brilliant contribution! But I had some minor issues:

    1) couldn't get zooms working on category product listings (but worked on New Products, Featured Products, etc.)
    2) couldn't get zooms working on medium (product page) images

    After pulling apart the IH code, I learned some stuff that might be helpful to other IH users, which I couldn't find in the documentation at BreakMyZenCart. (Apologies if this has already been posted...I haven't read through all 215 pages of this thread to find out, and can't seem to find anything relevant by searching.)

    Problem #1: ImageHandler handles three "sizetypes" of images: "small", "medium" and "large". It determines which sizetype it's working with in two ways:

    1) for medium and large images, it searches for "_medium" and "_large" in the filenames
    2) for small images, it checks to see if the width and height of the image are IDENTICAL to the "Small Image Width" and "Height" set in Admin > Configuration > Images. If the dimensions are not identical, and the image is not already identified as a medium or large image, it's labelled as "generic", and no zoom behavior can be applied.

    Therefore, to enable zoom behavior on ALL images (e.g., category product listings, "new product" listings, "featured product" listings, etc.), you first need to make sure that the following options MATCH the "Small Image Width" and "Height" in Admin > Configuration > Images:

    Image - Product Listing
    Image - Product Listing
    Image - Product New Listing
    Image - Product New Listing
    Image - New Products Width
    Image - New Products Height
    Image - Featured Products Width
    Image - Featured Products Height
    Image - Product All Listing Width
    Image - Product All Listing Height

    Problem #2: I discovered that the IH get_additional_parameters() function in includes\classes\bmz_image_handler.class.php, which adds the zoom behavior to images, checks to see if the current image sizetype allows zooming (an option set for small and medium images in Admin > Configuration > Images). However, it's limited to sizetype == 'small' on the previous line, excluding the possibility that medium images can have zooms.

    I changed this sizetype != 'large', so that the only images that are excluded from having zooms are large ones.

    Once that was working, and I had zooms on both small and large images, I realized it was pretty silly to zoom the "No picture available" pictures. I made some minor tweaks in the IH files to prevent zooms on these default pictures. I also tweaked the main_product_image template so that if a zoom is applied to a medium image, it does not also show the default ZenCart "larger image" caption and link to the popup (which seems redundant).

    Here's my tweaks as a patch. Would love it if somebody could download and test these changes and let me know what they think!
    Fabulous work.

    My medium images on the product info page now zoom to full size without using Lightbox and i can still use lightbox for the additional images and it will zoom it to full size or people can zoom the additional images to medium using image handler.

    Also got the subcategories zooming although it's unfortunate i need to set them at the same size as the small image but hey nothing's perfect.

    Great work and extremely useful and it works in both Internet Explorer 8 and Firefox 3.

    Now all we need is for someone to figure out how to enable image handler to work with the Opera web browser.

 

 

Similar Threads

  1. v150 Image Handler 4 (for v1.5.x) Support Thread
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1687
    Last Post: 17 Nov 2024, 07:26 PM
  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