Support

Account

Home Forums Add-ons Gallery Field Lightbox / Gallery Issue

Helping

Lightbox / Gallery Issue

  • i posted this question under this discussion and then realised it was marked as solved so may not be seen.

    i use a combination of ACF’s gallery field and the simple lightbox wordpress plugin in most sites, and never see a problem, but in this case i cannot get it to work. images simply open as you would expect with no lightbox. the appropriate html is being added to the page but the functionality just fails to fire. no errors rthat i can see in the console.

    here’s the code:

    <?php $images = get_field('project_images');
    if( $images ): ?>
     <div class="car-main-col" id="masonry-wrap" data-columns>    
      <?php foreach( $images as $image ): 
       $content = '<div>';
       $content .= '<a class="gallery_image" href="'. $image['url'] .'">';
       $content .= '<img src="'. $image['sizes']['medium'] .'" alt="'. $image['alt'] .'" />';
       $content .= '</a>';
       $content .= '</div>';
      if ( function_exists('slb_activate') ){
      $content = slb_activate($content);
      }
      echo $content;?>
      <?php endforeach; ?>
     </div>
    <?php endif; ?>

    and the page can be seen here: https://dev-cro.matmartin.co.uk/project/function/

    i know this is the/a correct solution as i’m finding the same answer everywhere (e.g. here) and have used this code countless times in the past.

    i’ve tried running it outside the masonry plugin (salvattore.js) and in separate default page templates without the extra functionality. no dice.

    any help troubleshooting this would be most welcome.

    thanks.

Viewing 1 post (of 1 total)

The topic ‘Lightbox / Gallery Issue’ is closed to new replies.