Ok, that was quick. Not sure if other things are broken…and YMMV. Do this at your own risk and make sure you’ve got things backed up.
Lines 357-360 are flickr-justified-gallery.php are currently:
var tit= \'<div class=”boxTitle”>\’+jQuery(this).find(\’.photo-title\’).html()+\'</div>\’;
var cap =\'<div class=”boxCaption”>\’+jQuery(this).find(\’.photo-desc\’).html()+\'</div>\’;
Replace those lines with this:
var tit= \'<div class=”boxTitle”>\’+\'</div>\’;
var cap =\'<div class=”boxCaption”>\’+\'</div>\’;
All this is doing is returning blank divs and not calling whatever jQuery array keeps returning undefined.
This means you’ve hardcoded out your captions.
Again, not sure if this will break anything else — but so far in my install, it’s working as I want it.