Support

Account

Forum Replies Created

  • I understand it has to be looped through slb_activate() but how? It’s not explained anywhere to dummies like me.

    I have my gallery displaying using the following code, but the lightbox doesn’t do a thing.

    $images = get_sub_field('sc_images');
    
    if( $images ): ?>
    <ul>
    
         <?php foreach( $images as $image ): ?>
         <li>
               <a href="<?php echo $image['url']; ?>">
    	        <img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
    	   </a>
               <p><?php echo $image['caption']; ?></p>
         </li>
         <?php endforeach; ?>
    </ul>
    <?php endif; ?>
Viewing 1 post (of 1 total)