Thanks for this plugin! We’ve noticed that the plugin doesn’t show the next/back navigation buttons for PDFs when in mobile or tablet view. This means people can only view the first page of a PDF and nothing more. Are you able to investigate?
On the page link I’ve shared, the PDF lightbox will appear when you click the “Sample Menu” button.
Thanks for your help!
]]>Hi Support
Is it possible to use WP-fields for the title?
For instance the following image WP-fields:
Title
Description
Caption
Alternate Text
Thx for your help
Greetings, Meggs
]]>Hi, i have the same issue with multiple sites. If I use the PDFJS viewer the PDF lighbox opens up, but it does not show any documents. So no PDF is visibile inside of the viewer. I dont know why this is happening since the PDFs were working fine with this plugin for many years, but no more. So i switched to the iframe option, which made the PDF work again. The only problem now is, that on mobile the PDF is not viewed in a correct way and also i cant scroll past the first page of the PDF file. It works fine on PC, but on mobile it breaks. What can be done, and why does the PDFJS viewer not work anymore?
Greetings
After updating your plugin to the newest version 1.3.17 I get the following error when trying to view PDFs:
The loading of the module from “/wp-content/plugins/ari-fancy-lightbox/assets/pdfjs/build/pdf.mjs” was blocked due to an unauthorized MIME type (“”).
Rolling back to version 1.3.13 helps.
What is the cause of the problem?
]]>Hi,
How do I make the image caption responsive? Also, How do I only show one column on mobile devices?
]]>activating Ari Lightbox gives me the following error:
“ARI Fancy Lightbox” can not be activated. It requires PHP version 5.4.0+ with SPL extension and WordPress 4.0+.<br /><br /><b>Recommendations:</b> update PHP version on your server from v. 8.1.28 to at least v. 5.4.0.<br /><br /><a href=”https://test.residentiebeukenhof.nl/wp-admin/” class=”button button-primary”>Back</a>
]]>After the update to the latest version of the plugin (Version 1.3.15) the PDF files stopped loading when the viewer is selected as “PDFJS” and I get the following errors across all browsers
]]>Will this be patched soon?
Hi, we are using ARI Fancy Lightbox to show videos loaded from a content delivery network to the lightbox. Wondering if because of this we are not seeing any Titles no matter what option we choose “Get title from EXIF data, Convert file name to title, or Smart title” Is there any workaround for having a title come from a CDN? Thanks
]]>Hi,
I’m attempting to implement a Content Security Policy (CSP), but it appears that your plugin uses jquery.fancybox.min.js
with an eval
function, resulting in an error on my pages:
EvalError: Refused to evaluate a string as JavaScript because ‘unsafe-eval’ is not an allowed source of script in the following Content Security Policy directive: “script-src ‘self'”
Could you please advise on how to address this issue?
]]>I am having a problem on a page with four single jpg images. The page also has some galleries (WP native) but the problem is with the single images. On this page two of those single images open properly with the single image in a lightbox but the other two open in an iframe. When I inspect the code at those images in Firefox Inspector I can see that:
If I look at the code in the wordpress editor, I cannot see anything different about the code initially generated by wordpress for those four images. What could be causing this difference in the generated class?
]]>The plugin works very well for many use cases, images, and including videos such as Youtube videos. I have a question about a special case of Youtube Shorts, which have a different URL structure.
Regular video: https://www.youtube.com/live/xxxxxx
Shorts video: https://youtube.com/shorts/xxxxxx
When a Shorts video link is converted by the plugin, for some reason it converts it to the regular video format:
https://www.youtube.com/watch?v=xxxxxxxx
The video works and can play, however it is using the regular video player format instead of the Shorts video format. I’m wondering if it’s possible for the plugin to detect the /shorts/ regex pattern for Shorts videos, and not convert it to the regular video, so that it plays using the Shorts video player on the popup and on Youtube if the user clicks on the external link.
Thanks!!
]]>Hello!
The latest release of NextGEN Gallery (3.50) changed quite a bit of its internal API, and now ARI Fancy Lightbox generates a fatal exception when NextGEN Gallery 3.50 is active.
This can be fixed with a simple change to ari-fancy-lightbox/libraries/arisoft/core/wordpress/class-nextgen.php by adding the following elseif clause inside of install_lightbox_v2():
// NextGEN 3.50+
} elseif ( class_exists( 'Imagely\NGG\Display\LightboxManager' ) ) {
$ngg_lightbox_manager = \Imagely\NGG\Display\LightboxManager::get_instance();
$lightbox_options = new \Imagely\NGG\DataTypes\Lightbox($lightbox);
$lightbox_options->title = $lightbox_title;
$lightbox_options->code = $code;
$lightbox_options->styles = array();
$lightbox_options->scripts = array();
$ngg_lightbox_manager->register( $lightbox, $lightbox_options);
It just needs the new Lightbox type passed instead of \stdClass.
Have a good day!
]]>Hi,
I checked the option Convert PDF links for open all pdf link in lightbox without success.
Have you a tips or a script for autolink all my pdf links?
Best regards
]]>Hi, PHP 8.2 and WP latest
[19-Oct-2023 08:34:44 UTC] PHP Deprecated: Creation of dynamic property Ari_Fancy_Lightbox\Loader::$load_scripts_in_footer is deprecated in /home/wp-content/plugins/ari-fancy-lightbox/includes/class-loader.php on line 13
Thanks
]]>hello,
im using trying to programmatically run fancybox light box on woocommerce product variation gallery which is generating by another plugin once user selects a variant like below:
var $slider = $(this);
var $items = $('.woocommerce-product-gallery__image a', $slider);
$items.each(function() {
var $item = $(this);
var src = $item.find('img').data('src');
$item.addClass('ari-fancybox');
$item.attr('data-type', 'image');
$item.attr('data-fancybox', 'woogallery_' + idx);
$item.attr('data-src', src);
});
$($items).fancybox();
it works but the only problem is that light box for variation gallery is different than simple products gallery.
i think somewhere inside ‘$($items).fancybox()’ i have to define the settings of light box like Animation effect, Animation Speed, Loop navigation, etc…
as i couldn’t find any documentation regarding this issue, i’d appreciate any help.
Thanks in Advance.
]]>Hello, I have a form that when you click on the send button performs a check with jquery and launches a page, I use this code to launch it, but I do not know how to add the part that launches that page within lightbox.
if($("#javierm").is(":checked") && $("#yolandam").is(":checked") && !$("#caler").is(":checked") && !$("#rositac").is(":checked") && !$("#reyc").is(":checked") && !$("#homeros").is(":checked")){
var url = "https://calendly.com/d/xxxx-9x9/reunion-colectiva-60";
$(location).attr('href',url, '_blank');
return false;
}
How can I insert what I need to open that page inside the lightbox? For normal links if it works anywhere on the page but in the jQuery code I use I do not know how to insert it.
]]>Hi,
WP 6.3.2 and PHP 8.1.x
]]>[29-Aug-2023 17:25:30 UTC] PHP Deprecated: Return type of Ari\Utils\Priority_Queue::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/wp-content/plugins/ari-fancy-lightbox/libraries/arisoft/core/utils/class-priority-queue.php on line 23
[29-Aug-2023 17:25:30 UTC] PHP Deprecated: Return type of Ari\Utils\Priority_Queue::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/wp-content/plugins/ari-fancy-lightbox/libraries/arisoft/core/utils/class-priority-queue.php on line 15
I’m currently using the ARI Fancy Lightbox plugin for WordPress and I’m very satisfied with its functionality and ease of use. However, I have a specific requirement that I’m hoping to implement.
In my current setup, I’m able to zoom into images once, which is a great feature. However, I’m interested in allowing a second level of zoom to enable users to examine images in even greater detail. I’ve looked through the plugin documentation and explored the settings, but I haven’t found a way to adjust the zoom levels or add an additional zoom step.
Could anyone please guide me on how I might achieve this? Is there a way to modify the plugin’s settings or code to allow for a second zoom level? Any assistance or direction would be greatly appreciated.
]]>Hi,
I have a page with pdf auto link.
On the accordion “arrêtés” the light box fired but on accordion “décisions”, the lightbox doesn’t fired.
I see that the class ari-fancybox-pdf ari-fancybox is present on a class but it’s not present on subfolder.
Have you en explication please?
I use wp file download of rmanage my pdf and i wrote the same message to this editor.
Best regards
]]>Hi,
This notice comes from your plugin.
[20-Jun-2023 10:37:23 UTC] PHP Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /home/wp-content/plugins/ari-fancy-lightbox/includes/class-plugin.php on line 132
Thanks
]]>Hi, I tested your plugin, it’s excellent, so easy but I want know if it’s possible to select only one link or other ?
Best regards
]]>Hi everyone,
I have a brand new and vanilla (no plugins whatsoever except ARI Fancy Lightbox) WordPress 6.2.2 installation for test purposes at https://www.valuevacc.eu/?page_id=5
In there, I made an empty page with nothing but a regular WP gallery block with two images in it. The gallery is set to “Link to Media File”.
Even though “Convert WordPress galleries” was activated in the ARI settings, the lightbox did not work. Only after I activated “Convert links to images” in ARI settings, the lightbox started working.
But navigation between the two images in the gallery is still not possible, even though “Navigate between attachments” is also activated.
What could I do here?
thanks,
Gebhard
]]>Getting the following error when trying to open PDF.
PDF.js v2.4.456 (build: 228a591c)
Message: undefined
After having updated my sites theme OceanWP from version 3.2.2 to 3.4.3 in a staging environment the Lightbox doesn’t integrate with NextGenGallery anymore.
The following link takes you to a testpage on my websites staging envinronment where WordPress, the theme and all plugins are all completely up to date as of this morning: https://jeroenbackx.com/1681079032052/?page_id=3215
ARI Fancy Lightbox is activated and selected in NGG. ARI Fancy Lightbox is the only lightbox which doesnt work, the default NGG Lightboxes do still work. The current behavior is the same as when NGG has no lightbox selected.
Ari Fancy Lightbox/NGG integration still worked fine after updating NGG without updating OceanWP.
I’m certain its OceanWP because I incrementally updated all plugins en tested in between and was able to confirm OceanWP was where things break.
Below is the same page on main website where OceanWP is not updated:
https://jeroenbackx.com/testpage/testngg/
I understand there are two other plugins meddling with yours so my hopes for a solution are not high but if you have any advice I would be thankful!
]]>Hello, need a bit of help with AI Fancy Lightbox. The plugin isn’t working with jetpack carroussels. I installed and enabled the plugin but images still open in the default jetpack lightbox.
Thank you in advance!
]]>Sorry, this is an automatic translation
Good morning,
Using the native WP gallery, if I use a POST type, navigation works between the elements, while in Page type it does not work (it does not even show the commands), even if in the settings “Convert WordPress galleries” and “Navigate between items” are activated.
Thanks, Claudio
]]>Hi All,
Vimeo video popup is working fine but the autoplay is not working. I’m using Elementor with the GeneratePress theme. Any possibility to fix this issue?
Many Thanks.
]]>Hello,
On this page: [ redundant link removed ]
Can you help me locate the right css selector to use in the Custom grouping selectors field in plugin settings?
Thank you
The styling is bad for the toolbar in the upper right. It is all blue and the icons don’t show up. When I click in the blue box, it works, but the user can’t see what the boxes are for. I am using the ‘customify’ theme. I tried to find the CSS that styles the toolbar using Chrome Developer Tools, but wasn’t successful. I could change the color of the boxes, but the icon in the box wouldn’t appear. In the ARI Fancy Lightbox ‘Style’ setting, I have:
Overlay background: black
Overlay opacity: .87
Thumbnails pane background: white
Lightbox z-index: 200000
Can you suggest CSS that I could use to fix the styling on the .fancybox-toolbar? Thanks for any help you can provide. And, thank you for the plugin. I use it on another website (bgaleria.com) and it works fine. I’m using the Astra theme with Elementor on that site. I would like to use it on kolbemission.com if I can get the toolbar to work.
]]>