I have php code for a very simple joomla image gallery:
<?php foreach($gallery as $photo): ?>
<li class="sig-block">
<span class="sig-link-wrapper">
<span class="sig-link-innerwrapper">
<a href="<?php echo $photo->sourceImageFilePath; ?>" class="sig-link" style="width:<?php echo $thb_width; ?>px;height:<?php echo $thb_height; ?>px;" rel="lightbox[gallery<?php echo $galleryID; ?>]" title="<?php echo JText::_('JW_SIG_NAVTIP');?> <b><?php echo $row->title; ?></b><br /><br />" target="_blank">
<img class="sig-image" src="<?php echo $transparent; ?>" alt="<?php echo JText::_('Click to enlarge'); ?>" title="<?php echo JText::_('Click to enlarge'); ?>" style="width:<?php echo $thb_width; ?>px;height:<?php echo $thb_height; ?>px;background-image:url(<?php echo $photo->thumbImageFilePath; ?>);" />
<?php if($galleryMessages): ?>
<span class="sig-pseudo-caption"><b><?php echo JText::_('Click to enlarge'); ?></b></span>
<span class="sig-caption" title="<?php echo JText::_('Click to enlarge'); ?>"><?php echo JText::_('Click to enlarge'); ?></span>
<?php endif; ?>
</a>
</span>
</span>
</li>
<?php endforeach; ?>
However at the moment when you click on an image to enlarge it, the words "JW_SIG_NAVTIP Traditional Albums Gallery" appear which makes very little sense to anyone looking at the image - is it possible to change this so that the name of that individual file shows up here? The name of the article the gallery is in is called "Traditional Albums Gallery" by the way.
If we could replace that text with the name of the file or with metadata put in with Adobe Bridge (without the file extension preferably) that would make a lot of Joomla users very happy!
Any help at all is much appreciated!
Thanks,
DC


Sign In
Create Account


Back to top










