Zen Cart Logo
Forums / All Other Contributions/Addons / Jquery Lightbox [Support thread]

Jquery Lightbox [Support thread]

Views: 82,872

Results 241 to 258 of 258
31 Aug 2010, 8:10 AM
#241
oberheimer avatar

oberheimer

Zen Follower

Join Date:
Feb 2009
Posts:
108
Plugin Contributions:
0

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?

5 Oct 2010, 11:08 AM
#242
sonik_fury avatar

sonik_fury

New Zenner

Join Date:
Aug 2010
Posts:
28
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

Any help, installed twice still not working...

My Site Here

26 Oct 2010, 12:41 AM
#243
echexxxxxxxx10 avatar

echexxxxxxxx10

New Zenner

Join Date:
Feb 2010
Posts:
58
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

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

18 Nov 2010, 6:12 PM
#244
paddy_uk2007 avatar

paddy_uk2007

New Zenner

Join Date:
Aug 2007
Posts:
95
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

gsdcypher:

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!

yellow1912:

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

23 Nov 2010, 5:39 AM
#245
paddy_uk2007 avatar

paddy_uk2007

New Zenner

Join Date:
Aug 2007
Posts:
95
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

paddy_uk2007:

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 ??

4 Dec 2010, 1:39 AM
#246
gaffettape avatar

gaffettape

Zen Follower

Join Date:
May 2009
Posts:
433
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

tony_sar:

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 :smile:)

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

From:```
if (zen_not_null($products_image)) {


To:```
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 :smile:

4 Dec 2010, 6:34 PM
#247
damiantaylor avatar

damiantaylor

Zen Follower

Join Date:
Aug 2009
Posts:
244
Plugin Contributions:
0

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

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

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!

28 Dec 2010, 9:35 PM
#249
j_azaria avatar

j_azaria

New Zenner

Join Date:
Dec 2010
Posts:
2
Plugin Contributions:
0

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.

12 Jan 2011, 9:49 PM
#250
belaze avatar

belaze

New Zenner

Join Date:
Dec 2006
Posts:
84
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

damiantaylor:

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

if(defined(IH_RESIZE))

> I had to change that line to
> ```
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](http://www.zen-cart.com/forum/member.php?u=80738),
Thanks alot...I've been looking for this fix for a long time...tip of the hat to Ajeh too! :clap:
16 Feb 2011, 1:52 PM
#251
d030433 avatar

d030433

New Zenner

Join Date:
Nov 2010
Posts:
38
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

where can i download the latest version of Jquery Lightbox. who can help me, thanks!

16 Feb 2011, 2:58 PM
#252
j_azaria avatar

j_azaria

New Zenner

Join Date:
Dec 2010
Posts:
2
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

J.Azaria:

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.

Bumping this post..
id still like to use jquery lightbox for the image resize but no dice. Any thoughts?
Anyone?

15 Mar 2011, 6:49 PM
#254
j5th avatar

j5th

New Zenner

Join Date:
Mar 2011
Posts:
6
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

Can someone help me install jqlightbox? I copied the files over and now my images just open in the current window instead of using lightbox. Did I not complete the installation? I checked the readme file.

Using Zen 1.3.9h and sorry I'm new at coding so I may be asking an easy question.

Thanks!

https://www.eweniquetouch.com

1 Apr 2011, 4:02 AM
#255
pizza392 avatar

pizza392

New Zenner

Join Date:
Mar 2011
Posts:
76
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

can i use Jquery Lightbox for define pages or ez pages?
something like rel="lightbox" ?

26 Aug 2011, 12:02 AM
#256
jagall avatar

jagall

Zen Follower

Join Date:
Mar 2011
Location:
Ireland
Posts:
286
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

gaffettape:

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 :smile:)

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

From:```
if (zen_not_null($products_image)) {

> 
> To:```
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 :smile:

It certainly did so big thank you to all.

17 Jun 2012, 8:26 AM
#257
torvista avatar

torvista

Totally Zenned

Join Date:
Aug 2007
Location:
Gijón, Asturias, Spain
Posts:
2,871
Plugin Contributions:
7

Re: Jquery Lightbox [Support thread]

This error shows up in Firebug after clicking the last image in the series.

The fix was found here:
http://stackoverflow.com/questions/5854086/jquery-lightbox-0-5-giving-error-for-hidden-links-how-to-fix-it

Go to line 194/line 20 for the min version

replace

objImagePreloader.src = settings.imageArray[settings.activeImage][0]

with

if (settings.imageArray[settings.activeImage]) {
objImagePreloader.src = settings.imageArray[settings.activeImage][0];
}
else {
_finish();
return false;
}

2 Aug 2012, 9:57 PM
#258
jcat avatar

jcat

New Zenner

Join Date:
Apr 2010
Posts:
15
Plugin Contributions:
0

Re: Jquery Lightbox [Support thread]

Hi there,

The Jquery Lightbox I installed on my zen cart version 1.3.8a has been working fine. However, lately I have done a zen cart upgrade to 1.5, and after that, I no longer see the Jq lightbox under the admin configuration menu. As a result, the lightbox is not working on the upgraded website.
I checked the "configuration_group" db table and JQLightbox entry is there. All of its include files are in the upgraded directory as well.

I downloaded the module from eazyecommerce.com (version 1.7). In the older zen cart version I also have JQZoom installed and now it is broken too after the upgrade.

Does anyone know what the problem is?

Any help is much appreciated!