asafm7
Forum Replies Created
-
Forum: Plugins
In reply to: [hCaptcha for WP] Privacy ComplianceThat’s great. Thanks, @kaggdesign.
Forum: Plugins
In reply to: [hCaptcha for WP] Privacy ComplianceThanks, @kaggdesign.
The filter I mentioned is an existing developer-level mechanism, but it is not the new behavior discussed in the GitHub feature request.Yes, I understand that.
What I’m saying is that I’ve tried it, and it doesn’t work – it doesn’t change the loading behaviour.
After adding the filter, loading isn’t held until the matching element becomes visible, as expected. The hCaptcha keeps loading after the regular delay/general user interaction.
As this is about an existing filter, rather than the new proposed feature, I thought you would like to keep this part of the conversation here. Please let me know if you prefer otherwise.
Thanks again.
Forum: Plugins
In reply to: [hCaptcha for WP] Privacy ComplianceThat’s great. Thanks @kaggdesign.
I’ve tried the code, but connection is still established on first interaction. I also tried disabling the delay feature by emptying the value, but it didn’t help.
Was the filter tested recently?
Thanks again!
Forum: Plugins
In reply to: [hCaptcha for WP] Privacy ComplianceThanks, @kaggdesign.
With differing and changing regulations across the globe, I assume a good principle would be to load it only whenever required, and as late as technically possible.
Login pages may be less problematic, as their whole purpose is logging in, and it is safe to assume a visitor loading them intends to log in.
For regular forms, a cascading fallback system, depending on technical feasibility, could be:
- Submit click
- Submit hover
- Form start (first input field focus or input)
- Form hover
I understand there are many supported integrations, and for some, this would be less straightforward than others.
I will create a feature request, as you suggested.
In the meantime, you mentioned a developer-level mechanism. Can this be used to achieve this goal with Jetpack forms?
Thanks again.
Forum: Plugins
In reply to: [LiteSpeed Cache] Is Stale Served for Naturally Expiring Cache?Sure. Thank you.
Forum: Plugins
In reply to: [LiteSpeed Cache] Is Stale Served for Naturally Expiring Cache?Thanks, @qtwrk.
I also created a GitHub suggestion for asynchronous revalidation that can make the feature more useful. Cloudflare started doing it a few months ago.
Thanks again.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Integrating ContentsquareLooking good so far. Thanks, @antoiub.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Untranslatable textThanks, @antoiub.
Forum: Plugins
In reply to: [OneSignal - Web Push Notifications] Typo in the plugin descriptionThanks, @jon1signal.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] LaTex blockI understand, @jenhooks.
Thanks for the detailed explanation.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] LaTex blockThanks, @jenhooks.
I’m familiar with the option you described.
The changelog specifically mentions a “LaTeX block“, though. Was it a mistake?
Thanks again.
Forum: Plugins
In reply to: [VRTs - Visual Regression Tests] A couple of issues with the testsThanks, @steffenbew.
Thanks for the detailed response.
I’m looking forward to the AI feature.
I wonder if AI in the future could determine whether a change is meaningful, perhaps by gradually learning through false-positive flagging.
Thanks again for an essential plugin.
Forum: Plugins
In reply to: [WP Activity Log] Public API for logging custom eventsI will check it out. Thanks @lucianwpwhite!
@litetim I schedule it:
add_action('admin_init', 'h4l_schedule_crawl_sitemap');
function h4l_schedule_crawl_sitemap($reschedule = false) {
$hook = 'h4l_crawl_sitemap';
$is_staging = wp_get_environment_type() === 'staging';
if (wp_next_scheduled($hook) && ($is_staging || $reschedule)) {
$timestamp = wp_next_scheduled($hook);
wp_unschedule_event($timestamp, $hook);
}
if (!wp_next_scheduled($hook) && !$is_staging) {
wp_schedule_event(time() + (5 * MINUTE_IN_SECONDS), 'every_eight_hours', $hook);
}
}See here:
Scheduling WP Cron Events – Plugin Handbook | Developer.WordPress.org
This is the server command:
cd /home/asafdevc/hobbies4.life && /usr/local/bin/php /home/asafdevc/hobbies4.life/wp-cron.php