BenR
Forum Replies Created
-
Forum: Plugins
In reply to: [Widgets for Google Reviews] only 10 reviewWould you mind sharing the solution?
Hi, looks good for me, thank you.
I have: define(‘DISABLE_WP_CRON’, true);
Plugin version 3.7.20.
Same issue here.
“Site uses a custom trigger for WP-Cron tasks” is missing.This solved it for me (found here: https://community.cloudflare.com/t/turnstile-not-working-inside-fancybox-modal/562481, change sitekey):
(function($) {
$(document).ready(function() {
$(document).on( 'elementor/popup/show', function() {
const widgetElement = document.querySelector('.elementor-popup-modal .cf-turnstile');
// Initialize Turnstile only when modal is opened
if (!widgetElement.hasAttribute('data-initialized')) {
cfWidgetId = turnstile.render('.elementor-popup-modal .cf-turnstile', { // Get widget id
sitekey: 'YOUR_SITEKEY',
callback: function(token) {
console.log("CAPTCHA completed.");
}
});
// Mark as initialized to prevent re-initialization
widgetElement.setAttribute('data-initialized', 'true');
}
});
}); // End document.ready
})( jQuery );Forum: Reviews
In reply to: [Dynamic Conditions] No option for Current DateIts actually not very easy to find.
Compare type: text
Conditional value: Dynamic tags -> Site: Current Date Time
Select the correct date format.The host is what you define in docker-compose.yml, usually db
I had the same issue. Had to remove all blocks from checkout page and use the shortcode only: [woocommerce_checkout].
I do not see costs and profits in Analytics->Products. Is this a PRO only feature?
Forum: Plugins
In reply to: [OoohBoi Steroids for Elementor] Glider not working@spindreams You are correct. I tried to destroy the swiper instance and reinitiate it with fade effect, and kind of make it work, but getting a ton of errors in console.. sorry, no time to deal with it.
Forum: Plugins
In reply to: [OoohBoi Steroids for Elementor] Glider not workingYou can use the (nested) carousel instead:
https://www.youtube.com/watch?v=Ypl-gunaBUIForum: Plugins
In reply to: [OoohBoi Steroids for Elementor] Glider not workingYep, same here.
Forum: Plugins
In reply to: [Category Posts in Custom Menu] Mobile sub-menuI solved it by adding some javascript in my child theme:
(function($) { $(document).ready(function() { $('.menu-item-type-taxonomy').addClass('menu-item-has-children'); }); })( jQuery );Same here
Same