dtp386
You can disable link for title / description of image with this tweak:
1) Go to file: /templates/ja_resume/acm/gallery/tmpl/style-1.php
2) Line 58-65:
<div class="item-image-content">
<?php if($helper->get ('gallery.title', $i)) : ?>
<h3 class="title"><a href="<?php echo $helper->get ('gallery.img', $i) ?>"><?php echo $helper->get ('gallery.title', $i) ?></a></h3>
<?php endif ; ?>
<?php if($helper->get ('gallery.desc', $i)) : ?>
<p class="desc"><a href="<?php echo $helper->get ('gallery.img', $i) ?>"><?php echo $helper->get ('gallery.desc', $i) ?></a></p>
<?php endif ; ?>
</div>
change to this:
<div class="item-image-content">
<?php if($helper->get ('gallery.title', $i)) : ?>
<h3 class="title"><?php echo $helper->get ('gallery.title', $i) ?></h3>
<?php endif ; ?>
<?php if($helper->get ('gallery.desc', $i)) : ?>
<p class="desc"><?php echo $helper->get ('gallery.desc', $i) ?></p>
<?php endif ; ?>
</div>