Hi @dealthenuts,
1. To apply popup lightbox to style 2, please open file templatesuberacmgallerytmplstyle-2.php and look for this code :
<?php if($itemLink):?><a href="<?php echo $itemLink; ?>" title="<?php echo $itemTitle; ?>"><?php endif ; ?>
change as below :
<?php if($itemLink):?><a href="<?php echo $helper->get ('gallery.img', $i) ?>" data-toggle="lightbox" title="<?php echo $itemTitle; ?>"><?php endif ; ?>
2. To apply popup lightbox to style 3, please open file templatesuberacmgallerytmplstyle-3.php and look for this code :
<a class="item-mask" href="<?php echo $itemLink; ?>"></a>
then update as below :
<a class="item-mask" data-toggle="lightbox" href="<?php echo $helper->get ('gallery.img', $i) ?>"></a>