elyrko
Forum Replies Created
-
Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] Recaptcha keys expiringI understand, but my concern was with wordpress default forms. Forms that are submitted to /wp-login.php endpoint. Even with custom forms shouldn’t it be a solution to intercept it then? Like telling the user to add a specific class/attr/id and then preventing the default submit until the recaptcha is verified and then continueing with the submission?
Something like:
let is_verified = false;
jQuery('form').on('submit', function(e){
if(is_verified){
// jQuery('form').submit();
}else{
// vverify captcha?
is_verified = true;
}
});This is obviously untested but shouldn’t it work?
- This reply was modified 2 years, 8 months ago by elyrko.
Seems like the PRO version don’t take product categories into consideration, the free version works fine, showing only the filters related to the category that is displayed and loads in seconds. In the PRO version there is only one query option, so idk what else should i change?
Seems like it disaplays all the filters even when category child is selected, it didn’t happen before upgrading to pro though so it’s a little confusing.
- This reply was modified 3 years, 11 months ago by elyrko.