arisoft
Forum Replies Created
-
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] FancyBox APIHello,
Use the following code:
$($items).fancybox(ARI_FANCYBOX_INSTANCE.options.lightbox)instead of:
$($items).fancybox()Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] Mailchimp tag functionalityHello
Tagging can be applied if connect the plugin with MailChimp via Make.com or Zapier service. If it is not suitable for your needs or you need more assistance, please contact us by email: info (at) ari-soft (dot) com
Hello
The following javascript code can be used to open the lightbox with particular URL:
jQuery.fancybox.open({src: 'https://calendly.com/d/xxxx-9x9/reunion-colectiva-60', type: 'iframe'});One note, the page will not be shown into the lightbox due to security settings for calendly pages (it prevents loading to 3rd party sites). You can contact Calendly support and ask if it is possible to embed their pages into your site.
You can contact us by email: info (at) ari-soft (dot) com
Is a trial version of this theme available so we can investigate the issue on our test server?
Could you specify what plugin you use for infinite scroll?
Do you try to add inline_scripts=”1″ attribute to shortcode? It will look like:
[streamquiz id="5" inline_scripts="1"]Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] PHP DeprecatedHi,
Thank you for your report. It is fixed in v. 1.3.12.
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] Stopped workingIt can be a problem with a cache plugin. Try to temporary disable cache for the page and check again.
Try v. 1.2.31 please
Hi
The plugin shows image in original size when zoom is used. If try to increase zoom then image will lost details.
You can add the following CSS rule to “ARI Fancy Lightbox -> Settings -> Style -> Custom CSS” parameter to increase zoom, but it is raw solution and you can play with it:
.fancybox-container:not(.fancybox-can-zoomIn) IMG.fancybox-image { transform: scale(3); }Forum: Reviews
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] Best personality quizThank you for your feedback. We really appreciate it.
Could you contact us by email: info (at) ari-soft (dot) com so we can discuss how to investigate the issue?
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] automatically linkHello
It doesn’t work because content for sub-folders are loading dynamically. Open “ARI Fancy Lightbox -> Settings -> Advanced” page and populate “Custom JS code” parameter with the following code:
if (typeof MutationObserver !== 'undefined') { var mutationObserver = new MutationObserver(function(mutations) { var nodesAdded = false; for (var i = 0; i < mutations.length; i++) { if ('childList' === mutations[i].type) { nodesAdded = true; } } if (nodesAdded) { var instance = window['ARI_FANCYBOX_INSTANCE']; instance.convertElements(); } }); mutationObserver.observe(document.querySelector('body'), { childList: true, subtree: true, attributes: false }); }Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] PHP 8.1 NoticesHi,
Thank you for your report. The problem is fixed in v. 1.3.11.