Missing Title & Description
-
Hi
Im trying to use FooBox with ACF Gallery.
It is working, except for the Description & Title is not showing when hovering over the lightbox.Instead, The Alt info is showing.
Any idea how to fix this?
Thank you<?php $images = get_field('gallery_images'); if( $images ): ?> <div id="photos"> <?php foreach( $images as $image ): ?> <a href="<?php echo $image['url']; ?>" class="foobox" rel="gallery"> <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" caption="<?php echo $image['caption']; ?>" description="<?php echo $image['description']; ?>" title="<?php echo $image['title']; ?>" /> </a> <?php endforeach; ?> </div> <?php endif; ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Missing Title & Description’ is closed to new replies.