Hi Magz,
You have a hidden section on your page that includes a link to a gift certificates.
ZLB uses a wildcard selector on the page looking for links with "gif" in the url. Yours is "/
gift-certificates" so it thinks that it's a link to include in the lightbox.
Thanks for the heads up, I'll make a fix for this in the next release.
There are 2 ways you can fix it yourself right now:
1. If you have
no GIF images on your EZ-pages, you can change the EZ page support >file types and remove " ,gif "
2. if you are using gif images on your EZ-pages, you can fix it by opening [includes/modules/pages/page/
jscript_zen_lightbox.php]
look for this line (probably around line 25):
Code:
$("a[href*='"+item+"']").attr('rel', lightboxType);
and change it to this
Code:
$("a[href*='."+item+"']").attr('rel', lightboxType);
the only change is adding that period in between the ' and ". This will tell it to look for links with .gif, thereby not finding your gift-certificates link.
let me know if that works for you.
daniel