Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

JIG + NextGEN Galleries + ARI Fancy Lighbox
(1 viewing) (1) Guest
"ARI Fancy Lightbox" WordPress plugin
Go to bottomPage: 1
TOPIC: JIG + NextGEN Galleries + ARI Fancy Lighbox
#61170
JIG + NextGEN Galleries + ARI Fancy Lighbox 6 Years, 7 Months ago Karma: 0
Hello!

Thank you for assisting me with my previous issue with the Lightbox plugins cancelling each other out.

See link: www.davidphoto.ca/wedding-portfolio/

I came across a new issue that haven't been able to find a solution myself for: when I click on the gallery buttons at the top of the Justified Image Grid to reorganize by NextGEN gallery and try clicking on an image, it does not open in the Fancy Lightbox, it opens as an attachment link. Any idea what could be causing the issue?
The administrator has disabled public write access.
 
#61171
Re:JIG + NextGEN Galleries + ARI Fancy Lighbox 6 Years, 7 Months ago Karma: 747
Hello,

When we click by an image, it opens into the lightbox. See the screenshot below:



Could you specify what browser you use?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#61172
Re:JIG + NextGEN Galleries + ARI Fancy Lighbox 6 Years, 7 Months ago Karma: 0
Sure thing. I'm using Chrome. Just to be clear, the issue happens only after clicking on a button at the top of the gallery to reorganize the images. After they've been reorganized the images open as attachments, not in the Lightbox.
The administrator has disabled public write access.
 
#61173
Re:JIG + NextGEN Galleries + ARI Fancy Lighbox 6 Years, 7 Months ago Karma: 747
The problem occurs because JIG changes DOM elements when applies a filter. It requires to re-init the lightbox, add the following code to "Advanced -> Custom JS code" parameter on "ARI Fancy Lightbox -> Settings" page:

Code:


    setTimeout(function() {
        $('.justified-image-grid').each(function() {
            var $this = $(this),
                    plugin = $this.data('justifiedImageGrid');

            if (!plugin || !plugin.createGallery)
                return ;

            var oldCreateGallery = plugin.createGallery;
            plugin.createGallery = function() {
                oldCreateGallery.apply(this, arguments);

                if (arguments.length > 0 && arguments[0] == 'filter')
                    ARI_FANCYBOX_INSTANCE.convertElements();
            }
        });
    }, 50);



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1