Hello Demiscient,
A simple hack worked for me,
In the plugin core file pinterest-lightbox.php
Find the below code
jQuery(document).ready(function($){
var select = $('a[href$=".bmp"],a[href$=".gif"],a[href$=".jpg"], a[href$=".jpeg"], a[href$=".png"],a[href$=".BMP"],a[href$=".GIF"], a[href$=".JPG"],a[href$=".JPEG"],a[href$=".PNG"]');
select.lightPin();
});
and replace with this
jQuery(document).ready(function($){
var select = $('a[rel^="pinlight"]');
select = $.unique( select );
jQuery.each(select, function() {
var select2 = $('a[rel="'+this.rel+'"]');
select2.lightPin();
});
});
Also in Gallery -> Effects Change JavaScript Thumbnail effect to Custom and put the code rel="pinlight[%GALLERY_NAME%]"
in the Link Code line.
Hope this will help.