Can you post a link to the page with error? I've never heard of this before, but I can look into it for you.
Printable View
Zen Lightbox
Zen Lightbox true
Overlay Opacity 0.8
Overlay Fade Duration 400
Resize Duration 400
Resize Transition false
Initial Width 250
Initial Height 250
Image Fade Duration 400
Caption Animation Duration 400
Display Image Counter true
Close on Image Click false
Close on Overlay Click false
Always show Prev / Next false
Keyboard Navigation true
Close Lightbox 27,88,67
Previous Image 37,80
Next Image 39,78
Gallery Mode true
Include Main Image in Gallery true
EZ-Pages Support true
File Types jpg,png,gif
ran the install.sql file, above shows it enabled in admin.
Are you running any other add-ons?
I see something strange in your source code where the css is loading with a url called min where it is concatenating all of your css files into one url.
I wonder if this could be causing issues because from what I can tell ZC autoloads the contents of certain directories based on their file names (I'm not sure exactly how it works) so maybe this is getting in the way of that.
just a thought…
It is the same on my test site, maybe looking at the test site you will see something different. Test site
O.K. so I disabled the Minify so that it does not combine and compress the css/js files as suggested but still no change.
I'm really at a loss. I deleted that one file we talked about earlier on one of my test sites and I ended up with the same scenario you have.
Maybe someone else will chime in with another suggestion.
If you want to PM me some FTP info I'll be happy to take a look, but I dont know what else to suggest at this point.
daniel
I am also at a loss here. I have installed this mod on thousands of sites and never had this issue. The min file is great for compressing files & in the same manner it is easily disabled via admin. It is enabled an test site and all works fine. was enabled now disabled on client site and still no lightbox. I don't know.
Hi Willy12,
I played around tonight and found a bit of code that you can remove to fix this error.
open [includes/templates/your-template/templates/tpl_modules_main_product_image.php]
scroll down to line 24 that starts:
and about half way down the line of code remove thisPHP Code:
document.write('<?php echo '
once you remove it, that section should look like this:PHP Code:
title="' . addslashes($products_name) . '"
this line pulls the product name from ZCs core files and there is some extra css in there that throwing it off.PHP Code:
…LARGE_IMAGE_HEIGHT) . '" rel="' . $rel . '" >' . zen_image…
let me know if that helps you.
daniel