Torsten Landsiedel

Results 174 comments of Torsten Landsiedel

I needed to disable the extension. The delay got so worse, I could see text coming up letter by letter seconds after typing. The browser (only on app.asana.com) got unusable....

After reading the slack discussion I want to add one question which I don't find answered there or here: If I run the money through the WPF (like we did...

Updated reference: https://github.com/pluginkollektiv/antispam-bee/blob/master/antispam_bee.php#L106-L108 Any chance to achieve this without breaking AJAX Comments plugins @websupporter ?

@websupporter What about adding a filter (or option?) here to allow AJAX calls if necessary? `if ( (defined('DOING_AJAX') && DOING_AJAX) or (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) ) { return; }` I can...

> i found a few lines which i think should also be considered Thanks for findings! I can't guarantee anything, but I will try to follow your path. Hopefully we...

> we made a custom solution based on the tutorial from rudrastyh.com. I tried to get this working with ASB and this tutorial and I have a solution. At first...

Although the above code now allows commenting, Antispam Bee still does not work properly, because we exit our functions because of a request path check: https://github.com/pluginkollektiv/antispam-bee/blob/master/antispam_bee.php#L1134-L1136 and https://github.com/pluginkollektiv/antispam-bee/blob/master/antispam_bee.php#L1179-L1199 The check...

Themes with `wp_handle_comment_submission` (AJAX) Feature: https://wpdirectory.net/search/01HJKQW4Q7NCTKNB3W54CPARMZ

For Ajax call `is_admin` is true, so we don't get in the else branch but stay in the admin branch: https://github.com/pluginkollektiv/antispam-bee/blob/master/antispam_bee.php#L168 There needs to be added one more check!

This could be solved with adding this check: `} elseif ( is_admin() && ! defined( 'DOING_AJAX' ) ) {` If this is an AJAX request, we shouldn't go to the...