Hello,
open the file:
...templates\jp-perfect2\roksprocket\layouts\mosaic\themes\gallery\item.php
And replace the complete code with the following code
Code:
<?php
/**
* @version $Id: item.php 23394 2014-10-09 15:22:10Z james $
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
/**
* @var $item RokSprocket_Item
*/
?>
<li<?php echo strlen($item->custom_tags) ? ' class="'.$item->custom_tags.'"' : ''; ?> data-mosaic-item>
<div class="sprocket-mosaic-item" data-mosaic-content>
<?php echo $item->custom_ordering_items; ?>
<div class="sprocket-padding">
<?php if ($item->getPrimaryImage()) :?>
<div class="sprocket-mosaic-image-container">
<a href="<?php echo $item->getPrimaryImage()->getSource(); ?>" data-uk-lightbox="{group:'<?php echo $item->getTitle();?>'}" title="<?php echo $item->getTitle();?>" ><img src="<?php echo $item->getPrimaryImage()->getSource(); ?>" alt="<?php echo $item->getPrimaryImage()->getAlttext(); ?>" class="sprocket-mosaic-image" />
<span class="item-image-backdrop"></span></a>
</div>
<?php endif; ?>
</div>
</div>
</li>
Please Log in or Create an account to join the conversation.