Page 404 of 710 FirstFirst ... 304354394402403404405406414454504 ... LastLast
Results 4,031 to 4,040 of 7099
  1. #4031
    Join Date
    Jul 2009
    Location
    Roswell, NM, USA
    Posts
    97
    Plugin Contributions
    0

    Have a Drink Re: Image Handler 2 Support

    If you are getting the dreaded javascript pageY error, open your includes/templates/YOUR_TEMPLATE/jscript folder and make the following tiny change to the jscript_imagehover.js

    Very near line 124 you should see:
    ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + event.pageY - docheight - truebody().scrollTop));

    it should be:

    ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + event.clientY - docheight - truebody().scrollTop));

    The links in this thread to the support no longer work and the ones with instructions aren't very clear. Hopefully anyone looking for the fix will find it here.

    Blessings,
    Krisann

    Keywords: pageY javascript error image handler

  2. #4032
    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 shartlesville View Post
    I think this is the patch to which they are referring: http://www.zen-cart.com/forum/showpo...postcount=2147

    It make it so you can hover over the "medium" or product image and it will pop up with the large one. It works great!

    I made a small change which is noted in the readme file, there was a missing <br /> that causes the "zoom" text to sit next to the image instead of under it if the "medium zoom" box is turned off in admin.

    The other note of caution with this is patch is, if you have made the suggested changes listed in the security patches to the includes/functions/html_output.php file, do NOT directly upload that file from this patch, but instead do a compare and merge them or you will undo your previous changes.

    All the other files can just be uploaded as-is once you change the YOUR_TEMPLATE file name to your actual file name.

    You can view the patch in action here: http://bestsewingdeals.com/zen-cart/...oducts_id=1619

    Blessings,
    Krisann

    Keywords: medium zoom large patch
    Thanks for posting.

    Note: I wouldn't call this a patch as it does not "Fix" a error/broken file. It just changes how a clean IH install works.

  3. #4033
    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 shartlesville View Post
    If you are getting the dreaded javascript pageY error, open your includes/templates/YOUR_TEMPLATE/jscript folder and make the following tiny change to the jscript_imagehover.js

    Very near line 124 you should see:
    ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + event.pageY - docheight - truebody().scrollTop));

    it should be:

    ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) + event.clientY - docheight - truebody().scrollTop));

    The links in this thread to the support no longer work and the ones with instructions aren't very clear. Hopefully anyone looking for the fix will find it here.

    Blessings,
    Krisann

    Keywords: pageY javascript error image handler
    Thanks.
    Like the use of keywords.

    For those that want to replace the file instead of making edits...
    http://www.zen-cart.com/forum/showpo...postcount=2340

  4. #4034
    Join Date
    Jul 2009
    Location
    Roswell, NM, USA
    Posts
    97
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I wish I would have seen your other post earlier! It would have saved me all that time. I didn't think to search for the jscript page, I searched for the error so your post didn't pop up.

    I was having so much trouble finding things I decided to start being pro-active and use keywords . I do that on a lot of my product pages to help people find the items because the search (at least in OSC, I haven't tried zen-cart search yet) isn't very helpful.

    Blessings,
    Krisann

  5. #4035
    Join Date
    Jun 2009
    Posts
    131
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I have a customer using Safari web browser on a Mac. The hover isn't working for her. I've installed Safari on my PC, and the hover does work for me. Any ideas?

  6. #4036
    Join Date
    Mar 2005
    Location
    TN
    Posts
    116
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I have a customer using Safari web browser on a Mac. The hover isn't working for her. I've installed Safari on my PC, and the hover does work for me. Any ideas?
    Have her visit this page: Test for Java and it will send her to the proper download for her system.

    If she doesn't see the little dancing Duke logo for Java, she doesn't have it installed at all, if she does, she still may need to upgrade.

    Liz

    Keywords: java browser safari
    Last edited by southernlady; 14 Jul 2009 at 04:30 PM. Reason: adding keywords

  7. #4037
    Join Date
    Jun 2009
    Posts
    131
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    I need to put photos at the top of each of my subcategories. They take up a lot of space, and appear on each page in the subcat. Is there anyway I could use Image Handler 2 on those photos? It would be really great if I could shrink them down, and pop them up when you hover.

    Here's an example:
    http://apeekintoyesterday.com/store/...h=4_43_165_335

  8. #4038
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Image Handler 2 Support

    Quote Originally Posted by pharry View Post
    I need to put photos at the top of each of my subcategories. Is there anyway I could use Image Handler 2 on those photos?
    If you have IH2 installed and configured properly it should do that automatically for you.
    Just upload an image via stock Zen Cart, by editing the cat or subcat in admin.
    Admin -> Categories/Products, go down a few levels until you find cat or subcat you want.
    Then click on green e button and go to Category Image, Browse button, upload your image.
    IH2 does the rest.

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

    Default Re: Image Handler 2 Support

    Quote Originally Posted by shartlesville View Post
    I think this is the patch to which they are referring: http://www.zen-cart.com/forum/showpo...postcount=2147

    It make it so you can hover over the "medium" or product image and it will pop up with the large one. It works great!

    I made a small change which is noted in the readme file, there was a missing <br /> that causes the "zoom" text to sit next to the image instead of under it if the "medium zoom" box is turned off in admin.

    The other note of caution with this is patch is, if you have made the suggested changes listed in the security patches to the includes/functions/html_output.php file, do NOT directly upload that file from this patch, but instead do a compare and merge them or you will undo your previous changes.

    All the other files can just be uploaded as-is once you change the YOUR_TEMPLATE file name to your actual file name.

    You can view the patch in action here: http://bestsewingdeals.com/zen-cart/...oducts_id=1619

    Blessings,
    Krisann

    Keywords: medium zoom large patch
    Thats exactly what i was talking about.

    I just wanted to know why it wasn't available as part of the normal download because when i was doing a new site i had to search for this patch again to get medium images to zoom.

    Someone could winmerge the security fixes and include this in the downloads for Image Handler.

    You might want to fix your queries as that is way too many.

    Install the latest version of Query_Cache from Datadiggers-com

    Don't use the downloads section here as it's an old outdated version of query cache. You will find it greatly benefits your site.


    For those getting that y error mentioned on the last page there was a Imagehover fix for this - It's somewhere in this thread and i'm surprised once again that no one has updated the download section to incorporate it.
    Last edited by need_help; 15 Jul 2009 at 03:46 PM.

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

    Default Re: Image Handler 2 Support

    Forget the last part of my post.

    The fix was for this.

    http://www.zen-cart.com/forum/showth...658#post517658

    An internet explorer 7 error issue.

 

 

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