Page 696 of 710 FirstFirst ... 196596646686694695696697698706 ... LastLast
Results 6,951 to 6,960 of 7099
  1. #6951
    Join Date
    Jul 2009
    Location
    Scotland
    Posts
    4
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Hi All,

    Hope someone can point me in the right direction here, I'm having problems with my products not displaying the large image preview window, basically it freezes when opening in firefox & IE but seems fine on safari?

    I've been trying to sort this out for a week now but with no sucess but have picked up some useful info regarding uploading my images and also correctly naming them.

    So my main questions are, is this problem easily fixed or should I just look at upgrading to IH3?

    The store has been customized & installed by a fellow zen cart forum member who could be contacted about this problem but I would prefer to start learning how to fix these problems out myself.


    Zen V1.3.9h
    IH2 version 2

    Thanks in advance & hope I haven't left anything important out

    Cheers
    Neil

  2. #6952
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Image Handler 2 Support

    Quote Originally Posted by neilyuk View Post


    Zen V1.3.9h
    IH2 version 2

    Thanks in advance & hope I haven't left anything important out

    Cheers
    Neil
    Yes, a link to your site so we can see the problem, and the code thats causing it.

    Provide a link to an effected page please.

    When you say preview, do you mean

    a) The large image on the product information page that appears when you click on the "larger image" link
    OR
    b) The hover image
    Webzings Design
    Semi retired from Web Design

  3. #6953
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

    Default Re: Image Handler 2 Support

    Quote Originally Posted by nigelt74 View Post
    It has been asked in this thread, I know i answered it. Can't find my original post but here is one that references, there is a big discussion somewhere before that post,

    http://www.zen-cart.com/forum/showpo...postcount=5818
    Actually all I want to do is remove the alt tag from showing when you hover over - not actually remove the alt tag itself from the image. The image handler is purposely displaying that in the hover so it has to be in the image handler files.

    Then I started thinking. I was looking to the php for an answer - there's javascript with this thing (DUH).

    So with a little bit of experimentation:
    in templates/js/jscript_imagehover.js

    line 193
    Code:
    newHTML = '<div><h1>' + title + '</h1>';
    change it to this to keep the white border
    Code:
    newHTML = '<div><h1>'  + '</h1>';
    or this to remove the white border
    Code:
    newHTML = ' ';
    I love answering my own questions!
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  4. #6954
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Image Handler 2 Support

    Ah Ok, you mean the caption on the actual hover image box, yep thats the right way to remove it.

    I assumed you meant the alttag that is displayed when you hover on an image, on any image, eg hover over your avatar to the left here and it should say "Delias Avatar", on some browsers that hover appears on the IH image hover and looks a bit odd.

    Quote Originally Posted by delia View Post
    Actually all I want to do is remove the alt tag from showing when you hover over - not actually remove the alt tag itself from the image. The image handler is purposely displaying that in the hover so it has to be in the image handler files.

    Then I started thinking. I was looking to the php for an answer - there's javascript with this thing (DUH).

    So with a little bit of experimentation:
    in templates/js/jscript_imagehover.js

    line 193
    Code:
    newHTML = '<div><h1>' + title + '</h1>';
    change it to this to keep the white border
    Code:
    newHTML = '<div><h1>'  + '</h1>';
    or this to remove the white border
    Code:
    newHTML = ' ';
    I love answering my own questions!
    Webzings Design
    Semi retired from Web Design

  5. #6955
    Join Date
    Jul 2009
    Location
    Scotland
    Posts
    4
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by nigelt74 View Post
    Yes, a link to your site so we can see the problem, and the code thats causing it.

    Provide a link to an effected page please.

    When you say preview, do you mean

    a) The large image on the product information page that appears when you click on the "larger image" link
    OR
    b) The hover image

    A. The large image on the product info page when clicking "larger image".

    I knew I would forget something www. g o g o graphics.co.uk
    Last edited by neilyuk; 30 Sep 2011 at 02:50 PM.

  6. #6956

    Default Re: Image Handler 2 Support

    Quote Originally Posted by neilyuk View Post
    A. The large image on the product info page when clicking "larger image".

    I knew I would forget something www. g o g o graphics.co.uk
    This is a Zen Lightbox support issue rather than an IH2 support issue, because it is your lightbox that is not functioning.

    When you install Zen Lightbox together with IH2, there are special installation instructions regarding a file they share. Unfortunately, the documentation for this has not yet been added to the Zen Lightbox Read_Me, and was not included in the IH2 Read_Me.

    This special installation instruction was added to the Read_Me for IH3 Release. Even though you are still using IH2, recommend you download IH3 and take a look at the Read_Me file - specifically the "Troubleshooting" tab, under the section that addresses using IH and ZLB together.

    If, after following those instructions, your lightbox still isn't functioning, recommend you post on the Zen Lightbox support thread.

    Good luck and happy Zenning :)
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  7. #6957
    Join Date
    Jul 2009
    Location
    Scotland
    Posts
    4
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Quote Originally Posted by ScriptJunkie View Post
    This is a Zen Lightbox support issue rather than an IH2 support issue, because it is your lightbox that is not functioning.

    When you install Zen Lightbox together with IH2, there are special installation instructions regarding a file they share. Unfortunately, the documentation for this has not yet been added to the Zen Lightbox Read_Me, and was not included in the IH2 Read_Me.

    This special installation instruction was added to the Read_Me for IH3 Release. Even though you are still using IH2, recommend you download IH3 and take a look at the Read_Me file - specifically the "Troubleshooting" tab, under the section that addresses using IH and ZLB together.

    If, after following those instructions, your lightbox still isn't functioning, recommend you post on the Zen Lightbox support thread.

    Good luck and happy Zenning :)
    Many thanks for pointing me in the right direction Mr Junkie At least I know where to start now

  8. #6958

    Default Re: Image Handler 2 Support

    You're very welcome

    Quote Originally Posted by neilyuk View Post
    Many thanks for pointing me in the right direction Mr Junkie At least I know where to start now
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  9. #6959
    Join Date
    Sep 2011
    Posts
    15
    Plugin Contributions
    0

    Default Re: Image Handler 2 Support

    Hi,
    I'm having problems uploading pictures.
    I upload a product and add pictures with image handler, until then everything's fine. Then when I upload a second product and try to add pictures with image handler, I get the same pictures as the previous product, uploaded to my new product as well ! And if I try to edit these pictures to put the ones I want instead, they also change in my first product ! And it goes the same for every product I add after that. It's like it's the same picture files for every product.
    Does anyone have any idea of what might be the problem ? I'm really stuck here..
    Thank you !

  10. #6960
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Image Handler 2 Support

    What at the image file names you're using?

 

 

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