Viewing 2 replies - 1 through 2 (of 2 total)
  • that section of options menu is only for there version of a lightbox. Have looked at the blurb im guess it hooks into each photo automatically. Not sure how though with out further investigation One lightbox program i tried by dfactor was done by the use of the rel tag.

    As suggested to me you might find adding following to your functions.php might do the trick that if use the same way.

    add_filter(‘foogallery_attachment_html_link_attributes’, ‘add_foogallery_link_rel’, 10, 3);

    function add_foogallery_link_rel($attr, $args, $attachment) {
    $attr[‘rel’] = ‘lightbox’;
    return $attr;
    }

    Plugin Author bradvin

    (@bradvin)

    hey guys,

    It looks like the IW magnific popup plugin is hard coded to galleries with the following selectors:

    // Gallery Images
    $('.iwmp-gallery, .woocommerce-main-image').each(function() {

    Ask the plugin author to add support for FooGallery, by changing the above line to be:

    // Gallery Images
    $('.iwmp-gallery, .woocommerce-main-image, .foogallery-container').each(function() {
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘IW Magnific Popup lightbox Foo Gallery’ is closed to new replies.