arisoft
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Connector] “Name” isn’t writing to MailerLiteNew version is available. Please update the plugin.
Forum: Plugins
In reply to: [Contact Form 7 Connector] “Name” isn’t writing to MailerLiteHello @xclamation,
We are sorry for the delay. It is totally our fault. New version of the plugin will be ready today with a fix.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] select only one link for lightboxHi
You can use a shortcode or add “ari-fancybox-iframe” CSS class to link HTML element.
Forum: Plugins
In reply to: [Contact Form 7 Connector] IMPOSSIBLE TO UPDATEPlease make sure a correct API key is specified in plugin settings.
You can read here where find API key.
Forum: Plugins
In reply to: [Contact Form 7 Connector] “Name” isn’t writing to MailerLiteCheck your mail please.
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] Stopped workingHi
Try to add inline_scripts=”1″ attribute to shortcodes:
[streamquiz id="3" inline_scripts="1"]Hello
Populate “Integration -> Images -> Custom grouping selectors” parameter with the following value to group images:
.wp-block-gallery$$AForum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Error When Viewing PDFHello
Is it possible to see the problem anywhere?
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] Personality Quiz without e-mailHello
Lead form is optional. Results can be shown without collecting name/email.
Thank you for your feedback. We really appreciate it.
Forum: Plugins
In reply to: [ARI Stream Quiz - WordPress Quizzes Builder] Stopped workingHi
Could you try to add inline_scripts=”1″ attribute to shortcode and clean WordPress cache? It will look like:
[streamquiz id="3" inline_scripts="1"]Try to replace the following code:
$parent.attr(‘data-src’, $img.attr(‘data-url’));
with the following one (don’t forget to replace with ’ with correct symbol):
$parent.attr(‘data-src’, $img.attr(‘data-orig-file’));
Hello,
Populate “Custom JS code” parameter on “ARI Fancy Lightbox -> Settings -> Advanced” page with the following code:
setTimeout(function() {
$(‘.tiled-gallery__item>img’).each(function() {
var $img = $(this), $parent = $img.parent();
$parent.attr(‘data-src’, $img.attr(‘data-url’));
$parent.attr(‘data-caption’, $img.attr(‘data-image-title’));
$parent.attr(‘data-fancybox’, ‘gallery’);
});$(‘.tiled-gallery__item’).fancybox();
$(‘.tiled-gallery__item’).click(function() {
return false;
});
}, 10);Try to add the following code to “Custom JS code” parameter on “ARI Fancy Lightbox -> Settings -> Advanced” page:
setTimeout(function() {
$(‘.ari-fancybox’).off(‘click.magnificPopup’);
$(‘.ari-fancybox’).on(‘click’, function(ev, data) {
if (data && data.skip) { return false; }
var self = this;
setTimeout(function() { $(self).trigger(‘click’, {skip: true})});
return false;
});
}, 10);