arisoft
Forum Replies Created
-
Hello
Is it possible to see the problem anywhere? What version of MS Edge do you use?
Hello
Try this solution.
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] How to add phone field?Hello
Read this post please.
Open “ARI Fancy Lightbox -> Advanced” page and populate “Custom JS code” parameter with the following code:
$('.blocks-gallery-item figure').each(function() { var $container = $(this); $container.find('A').data('caption', $container.find('figcaption').html()); });PS: You can also use PRO version, it retrieves titles from figcaption automatically.
Add the following code to “Custom JS code” parameter on “ARI Fancy Lightbox -> Advanced” page to close the lightbox when use mouse wheel/touchpad:
$(document).on('onInit.fb', function(e, instance, current) { instance.$refs.stage.on('mousewheel DOMMouseScroll wheel MozMousePixelScroll', function() { $.fancybox.close(); }); });Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Lightbox CaptionsOpen “ARI Fancy Lightbox -> Advanced” page and populate “Custom JS code” parameter with the following code:
$('.fg-item A').each(function() { var $el = $(this), title = [$el.attr('data-caption-title'), $el.attr('data-caption-desc')].filter((title) => title && title.length > 0);$el.data('caption', title.join('<br>')); });Hello,
Do you need it for integration with 3rd party gallery plugin? Is it possible to see a sample page?
The plugin closes the lightbox when swipe up/down on mobile devices.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Lightbox CaptionsHi
Do you use a gallery plugin which generates images with titles and descriptions? Is it possible to see a sample page?
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] show post in a popupThe plugin doesn’t support this ability.
Hello,
You can try populate “Images -> Custom grouping selectors” parameter on “ARI Fancy Lightbox -> Settings -> Integration” page with the following value:
AIf it doesn’t help, could you specify a page where you need navigation?
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] disable loaderIs it possible to see the problem anywhere?
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] pre-sale questionHello
Sorry, but the plugin doesn’t support this ability.
Forum: Plugins
In reply to: [ARI Adminer - WordPress Database Manager] PHP 7.1 CompatibilityThe latest plugin version (1.2.3) is fully compatible with latest PHP version.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] URGENT – image and videos flickerHello
It is not “ARI Fancy Lightbox” issue. This problem with code in divi-custom-script.min.js file. et_fix_page_container_position() function from this file is called constantly, the function adds a temporary element to the page and then remove it. This causes flickering on the page.