I’ve debugged the JS code that invokes the reCaptcha reload and it turned out to be the code in “cf7-conditional-fields/js/scripts.js” at line 308 (as of version 2.4.15) that was invoking the change event if clear_on_hide was set.
TL;DR: dont use clear_on_hide and reCaptcha will not repeatedly spam reload/clr requests, and your form will work. Instead, use conditional email formatting as instructed by the manual https://conditional-fields-cf7.bdwm.be/clear_on_hide/
The DB column with comment text needs to be in charset/collation that supports the emojii
ALTER TABLE 'wc_comments' CHANGE 'comment_content' 'comment_content' TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL
-
This reply was modified 6 years ago by alrickk. Reason: formatting