Thread Starter
bernav
(@bernav)
below is our code for the scroll to top:
$(document).ready(function(){
var offset = 220;
$(window).scroll(function() {
if ($(this).scrollTop() > offset) {
$('a#backtop').show();
} else {
$('a#backtop').hide();
}
});
$('a#backtop').click(function(event) {
event.preventDefault();
$('html, body').animate({scrollTop: 0}, 500);
return false;
});
});
Hi. I have installed the plugin yesterday. I have selected “Open Lightbox” from Image Click Action in Generate Shortcode page. But it seems that its not working. The image when clicked will redirect me to a new page instead of a lightbox. I don’t have any plugins that will open a new window if an image is click. Is the lightbox only available for premium users? thank you.