Page 25 of 26 FirstFirst ... 1523242526 LastLast
Results 241 to 250 of 258
  1. #241
    Join Date
    Feb 2009
    Posts
    108
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    Hello i have a problem with lightbox, jquery and my other java on my site (index page). I figured out that one of my old js files does not work with lightbox js files
    Can i change so only the old js file is activated on the index page and the other is activated on any of the other pages?
    will this sort this out or how should i do?

  2. #242
    Join Date
    Aug 2010
    Posts
    28
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    Any help, installed twice still not working...

    My Site Here

  3. #243
    Join Date
    Feb 2010
    Posts
    58
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    hi tu all,
    when can i download the Jquery Lightbox mod?

  4. #244
    Join Date
    Aug 2007
    Posts
    95
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    Quote Originally Posted by gsdcypher View Post
    well, one problem i have is the location of the additional images in my zen cart - which ajax image swapper solves by locating the additional images under the main image in a scrolling box. i don't think jqzoom addresses that... but that aside... is there a way to make jqzoom swap images on mouse click rather than mouse over?

    thanks!
    Quote Originally Posted by yellow1912 View Post
    Yes, but you will have to make a minor change in the code to get that. It is not configurable as of now
    Hi does anyone no what bit of coding i need to edit and how to edit it so jqzoom swaps the images on mouse click rather then mouse over??

    am using both jqzoom and lightbox and they work fine, its just the problem of them changing when roll over to click.

    Please can someone help
    thanks

  5. #245
    Join Date
    Aug 2007
    Posts
    95
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    Quote Originally Posted by paddy_uk2007 View Post
    Hi does anyone no what bit of coding i need to edit and how to edit it so jqzoom swaps the images on mouse click rather then mouse over??

    am using both jqzoom and lightbox and they work fine, its just the problem of them changing when roll over to click.

    Please can someone help
    thanks
    can anyone help me ??

  6. #246
    Join Date
    May 2009
    Posts
    413
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    Quote Originally Posted by tony_sar View Post
    Ok , the duplicate seems to be coming from TPP when you enable Review tab for product . turning review tab will fix the problem .
    will look into the code to see why this is happening and if got any fix , will post it back .
    Hi,

    I also had a problem with the main product image being duplicated at the end of the jquery lightbox cycle when I had the Tabbed Products Pro reviews tab turned on.

    Here's a solution that worked for me (all props go to Ajeh )

    Edit line #14 of includes/templates/template_default/templates/tpl_product_reviews_default.php

    From:
    Code:
    if (zen_not_null($products_image)) {
    To:
    Code:
    if (false && zen_not_null($products_image)) {
    And save to includes/templates/your_template/templates/tpl_product_reviews_default.php (saving to your_template utilizes the overrides system, making future upgrades easier)

    I hope this helps someone as much as it did me

  7. #247

    Default Re: Jquery Lightbox [Support thread]

    I have the same problem that has been discussed before on this forum and I think the answer is to tweak Image Handler 2 settings but I don't know what the settings should be!

    Basically, my main image does not show with a watermark since turning jqlightbox on.
    If I turn it off, the watermarks appear again.

    Interestingly, my additional images do show with a watermark even in the lightbox, just not my main image.

    I don't know if this helps, but to get my additional images to show in the lightbox at all I had to change includes/modules/mytemplate/additional_images.php.
    For some reason, the
    Code:
    if(defined(IH_RESIZE))
    around line 91 always returned null so $flag_has_large was never set to true.
    I had to change that line to
    Code:
    if(IH_RESIZE == 'yes' || IH_RESIZE == 'no')
    to get it to work.

    Can anybody help me on getting the main image watermark to show again?

    Thanks!

  8. #248

    Default Re: Jquery Lightbox [Support thread]

    Forgot to give an example so you can see what is happening...

    http://www.snowrepublic.co.uk/BodyAr...Force-Top-2011

  9. #249
    Join Date
    Dec 2010
    Posts
    2
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    Hi all,

    I just installed jquery lightbox on a local dev site (wampserver2). It appears to be working as it should, lightbox appears, etc. but the images do not resize to the browser window. I've looked for settings and searched here and google but don't see any answers for this.

    Any ideas what might be wrong (or how do I go about troubleshooting)?

    My PHP and JS skills are somewhat passable but I'm no expert and I'm also new to zencart. I've poked around a bit in my HTML and in the .js and .css but I don't see anything that seems to be connected. I also tried clearing out the files (not the folders) in the bz_cache directory in case it had to do w/ IH2 images already created.
    I've included some details about my setup below.
    Any help is much appreciated.

    Thank you,
    J.

    Zen 1.3.9h with a [somewhat] modified mystic river template (mostly cosmetic changes)
    Running a few mods incl IH2 but nothing that alters the product view (like product tabs, mentiioned here a few times). Nothing that modifies the core files. I had a mootools slimbox up before (still using it on the live site) which I removed completely before installing this.
    Last edited by J.Azaria; 28 Dec 2010 at 10:39 PM.

  10. #250
    Join Date
    Dec 2006
    Posts
    84
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    Quote Originally Posted by damiantaylor View Post
    I have the same problem that has been discussed before on this forum and I think the answer is to tweak Image Handler 2 settings but I don't know what the settings should be!

    Basically, my main image does not show with a watermark since turning jqlightbox on.
    If I turn it off, the watermarks appear again.

    Interestingly, my additional images do show with a watermark even in the lightbox, just not my main image.

    I don't know if this helps, but to get my additional images to show in the lightbox at all I had to change includes/modules/mytemplate/additional_images.php.
    For some reason, the
    Code:
    if(defined(IH_RESIZE))
    around line 91 always returned null so $flag_has_large was never set to true.
    I had to change that line to
    Code:
    if(IH_RESIZE == 'yes' || IH_RESIZE == 'no')
    to get it to work.

    Can anybody help me on getting the main image watermark to show again?

    Thanks!
    Hey damiantaylor,
    Thanks alot...I've been looking for this fix for a long time...tip of the hat to Ajeh too!

 

 
Page 25 of 26 FirstFirst ... 1523242526 LastLast

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 PM
  2. v153 jQuery Scrolling Sideboxes [Support Thread]
    By lat9 in forum Addon Sideboxes
    Replies: 79
    Last Post: 15 Apr 2024, 10:20 PM
  3. v152 Down for Maintenance jQuery Countdown (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 27 Nov 2015, 03:04 PM
  4. v152 jQuery Banners (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 30 Sep 2015, 02:07 AM
  5. Jquery Zoom [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 384
    Last Post: 11 Dec 2013, 02:41 AM

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