Page 1 of 2 12 LastLast
Results 1 to 10 of 3727

Hybrid View

  1. #1
    Join Date
    Mar 2011
    Posts
    364
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by DivaVocals View Post
    Just a general suggestion before posting a question in the support thread is to search to see if your answer has already been posted..

    What you are asking is a subject which JUST been discussed in the last few pages of this support thread.. See if any of the previous discussions on this matter and the posted solutions help you... (Start at post 2515 and work your way up)
    Yes I have dug through all 253 pages. So please bear with me.

    I'm an osC user and am getting used to the better features of zc.

    Here is my questions. I have installed the latest version of IH2 and Lightbox for 1.3.9h. Both installed no problem. IH2 was installed first and then lightbox.

    Here is the issue.

    i.e.

    /images/manufacturer/ [manufacturers image goes here, irrelevant but oh well]

    /images/companyname/IMAGE.jpg and IMAGE_01.jpg has been uploaded here.

    Both images are 640x480.

    IMAGE.jpg is a test color black and is the main image.
    IMAGE_01.jpg is a test color red and is the second additional image.

    When I go to the product page the main image by the product description is not there. Nothing is there. but the second additional image is there. I can hover over it and a 640x480 image of it pops up. I click on it and the light box version 640x480 pops up.

    What happened to my main image IMAGE.jpg?

    I cannot figure it out.

    I'm trying to get by without upload a MEDIUM AND SMALL image. I just want to use ONE image size and have the software resize it under the settings I have in the admin section.

    TIA

  2. #2
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Quote Originally Posted by willie bee View Post

    /images/manufacturer/ [manufacturers image goes here, irrelevant but oh well]

    /images/companyname/IMAGE.jpg and IMAGE_01.jpg has been uploaded here.

    Both images are 640x480.

    IMAGE.jpg is a test color black and is the main image.
    IMAGE_01.jpg is a test color red and is the second additional image.

    When I go to the product page the main image by the product description is not there. Nothing is there. but the second additional image is there. I can hover over it and a 640x480 image of it pops up. I click on it and the light box version 640x480 pops up.

    What happened to my main image IMAGE.jpg?

    I cannot figure it out.

    I'm trying to get by without upload a MEDIUM AND SMALL image. I just want to use ONE image size and have the software resize it under the settings I have in the admin section.

    TIA
    first make sure every file got uploaded and in the proper spot for IH2 AND then post in here IF you are having trouble with lightbox too

    is lightbox working?

    as for IH2 I myself only upload 1 size image for main and additional ones but have the settings correct---what you need to do is post a link to your store--especially the naughty page and post your settings of how you have your images to show.

    then all can better assist you.

    If IH2 is the only one that is not working properly I suggest you go to the IH2 thread and post there--also to get better help.

  3. #3
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Default Re: Zen Lightbox...

    I've seen this questions asked but not answered.....here I go:

    I have a js file to disable the right click function, displaying a copyright warning.

    Where would I edit the zen lightbox files to get that js function to work on the lightbox image?

    I know, I know....anyone really wanting it can get it...but it helps makes our case when images are blatantly taken.

    thanks for any help. Great mod..thanks for all your hard work...

  4. #4
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Zen Lightbox...

    Quote Originally Posted by athena View Post
    I know, I know....anyone really wanting it can get it...
    Then let me add this.. Watermarks are MUCH more effective way to protect your images and provide REAL protection.. Right click scripts only deflect and deter only those who are not particularly web/computer savvy.. Non web/computer savvy folks are UNLIKELY perpetrators of image theft.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #5
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Default Re: Zen Lightbox...

    thank you...yes, i guess i need to add yet another new skill to my image processing.

  6. #6
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Zen Lightbox...

    Quote Originally Posted by athena View Post
    thank you...yes, i guess i need to add yet another new skill to my image processing.
    Not really.. IH2 can automatically add watermarks to your images.. and guess what??


    it works WITH Zen Lightbox!
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #7
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Default Re: Zen Lightbox...

    I've just been looking and find that my server does not have ImageMagick...so that's a deal breaker, right?

  8. #8
    Join Date
    May 2010
    Posts
    222
    Plugin Contributions
    0

    Default Re: Zen Lightbox...

    Lightbox was working for me up until a short while ago. Now when I click on a product's image, I just get this:






    Could someone please let me know what is causing this? The only thing I can remember doing since Lightbox was working is installing the Reward Points Full Suite module.

  9. #9
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Default Re: Zen Lightbox...

    thanks, you guys...i have the solution and am not asking for any special programming...just how to get a javascript file, which normally automatically loads on every page in zencart, to load on the lightbox presentation page. You know, like the css file does. So I'll look for how the css links to the lightbox event and try that.

    I don't post my link here because in the past my sight has been overwhelmed and the bandwidth through the roof.

    here is the js code..it is a common old script. thanks for your time:

    Code:
    /*
    Disable right click script II (on images)- By Dynamicdrive.com
    For full source, Terms of service, and 100s DTHML scripts
    Visit http://www.dynamicdrive.com
    */
    
    var clickmessage="Images Copyrighted. Please do not copy."
    
    function disableclick(e) {
    if (document.all) {
    if (event.button==2||event.button==3) {
    if (event.srcElement.tagName=="IMG"){
    alert(clickmessage);
    return false;
    }
    }
    }
    else if (document.layers) {
    if (e.which == 3) {
    alert(clickmessage);
    return false;
    }
    }
    else if (document.getElementById){
    if (e.which==3&&e.target.tagName=="IMG"){
    alert(clickmessage)
    return false
    }
    }
    }
    
    function associateimages(){
    for(i=0;i<document.images.length;i++)
    document.images[i].onmousedown=disableclick;
    }
    
    if (document.all)
    document.onmousedown=disableclick
    else if (document.getElementById)
    document.onmouseup=disableclick
    else if (document.layers)
    associateimages()

  10. #10
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Default Re: Zen Lightbox...

    well...it's no wonder you guys were puzzled...although I still want to know how to get a js file to load here....

    I found that I had not uploaded the lightbox file in the main store directory...just the images and includes folders....somehow overlooked the main php file; it worked without it but now when I right click it is a different menu, less blatantly "please steal this image" in both ie and firefox.

    I'll try installing ih2 and see what happens.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Free Shipping Rules addon [Support Thread]
    By numinix in forum Addon Shipping Modules
    Replies: 36
    Last Post: 2 Dec 2016, 01:56 PM
  2. v151 Reviews Reply addon [Support Thread]
    By mikestaps in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 17 Oct 2014, 01:29 AM
  3. Jquery Lightbox [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 2 Aug 2012, 10:57 PM
  4. File Upload Required addon [Support Thread]
    By 1100101 in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 10 Dec 2011, 03:00 AM
  5. [Support Thread] IE only JavaScripts and Stylesheets Addon
    By Meshach in forum All Other Contributions/Addons
    Replies: 16
    Last Post: 31 May 2011, 08:18 PM

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