arisoft
Forum Replies Created
-
We received it. Thank you. Check your mail please.
Unfortunately we haven’t received an email. Could you re-check email address and send it again?
We can’t reproduce it on PHP 8.1.1. Could you provide a temporary access to backend part so we can investigate the problem? Probably you can reproduce it on a test site. Contact us by info (at) ari-soft (dot) com
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] CSS Class for result templatesHello,
It is possible to show different templates based on number of earned score for trivia quizzes or do you need something another?
It is fully compatible with PHP 8.x
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Toolbar doesn’t show upThis conflict with site theme styles. Open “ARI Fancy Lightbox -> Settings -> Style” page and populate “Custom CSS” parameter with the following code:
.fancybox-button {
padding: 10px !important;
background: rgba(30,30,30,.6) !important;
}Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Toolbar doesn’t show upHello
Sorry for the delay. Could you specify link/image for what our lightbox is used? Another lightbox appears when we click by images.
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] Add explanation to the questionHello
This feature is available on in PRO version for trivia quizzes.
Hello,
Unfortunately we can’t reproduce the problem on our test server. Could you contact us by email: info (at) ari-soft (dot) com and grant a temporary access so we can investigate the issue?
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] have quiz for one timeHello,
Sorry, but currently the plugin doesn’t support this ability.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Thumbnail is rotated incorrectlyCould you provide screenshot(s) where possible to see the problem? We tried to upload an image and it looks normal.
Images from https://www.ainolaukkanen.fi/koruja/ are opened into the lightbox. Could you provide exact steps how to reproduce the problem?
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Lightbox Navigation MissingHi
If the problem is still actual, provide a link to a page with the gallery please. The mentioned page doesn’t contain gallery.
Hello
The plugin can retrieve titles from EXIF data.
Navigation for custom galleries can require to fill a CSS selector in “ARI Fancy Lightbox -> Settings -> Integration -> Images -> Custom grouping selectors” parameter. We can help with it.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Disable lightbox in iPhone devicesHi,
Open “ARI Fancy Lightbox -> Settings -> Advanced” page and populate “Custom JS code” parameter with the following code:
if (/iPad|iPhone|iPod/.test(navigator.platform)
|| (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)) {
$('A').each(function() {
var $el = $(this), link = $el.attr('href');
if (ARI_FANCYBOX_HELPER.isPDFLink(link)) {
$el.addClass('no-lightbox');
}
});
}