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!