dench0 → changed the visibility of the branch 3491948-update-modules-dependencies to hidden.
@carolpettirossi
You need to check the captcha points settings /admin/config/people/captcha/captcha-points
@dhruv.mittal
thanks
Do you have a captcha response like the one on this screenshot?
Fix src/Event/TrackCheckoutStepEvent.php
use statement.
/**
* Implements hook_editor_js_settings_alter().
*/
function <module_name>_editor_js_settings_alter(array &$settings) {
foreach ($settings['editor']['formats'] as &$format) {
if (!empty($format['editorSettings']['config']['link']['decorators'])) {
foreach ($format['editorSettings']['config']['link']['decorators'] as &$decorator) {
$target = $decorator['attributes']['target'] ?? FALSE;
if ($target === '_blank') {
$decorator['defaultValue'] = TRUE;
}
}
}
}
}
1. We can use `RedundantEditableConfigNamesTrait`
2. Please revert this change https://git.drupalcode.org/project/recaptcha_v3/-/merge_requests/30/diff...
3. Increase the drupal core version in the composer.json
to ^10.2
Closed in favor of this issue: https://www.drupal.org/project/recaptcha_v3/issues/3467524 📌 Use #config_target for the ReCaptchaV3SettingsForm Active
@seanr,
please read the issue description, it does not relate to your case.
Hi @here,
you can try this
https://www.drupal.org/project/recaptcha_v3/issues/3447924#comment-15630224
🐛
Error message: Antibot verification failed
Fixed
, it might help.
Thanks but when I don't have a captcha element, but do have a captcha point, I don't see a badge
then you need to check if you are using the correct form id.
If you are talking about webforms, you need to use only one method: captcha point or webform captcha element.
So you suggest unchecking on both Google and in Drupal? (despite what is says about doing one or the other)
Just for testing purposes.
try to uncheck "Local domain name validation"
if I should try with new keys
yes, you can try.
Also what do you have in the Recapthact v3 settings for the:
- Local domain name validation
- Cacheable
?
I just re-enabled this in Google admin
no, let's left it unchecked.
and also please show the captcha action config
try to add domain name with "www"
can you also send me a screenshot of the recaptcha v3 config in google admin: https://www.google.com/recaptcha/admin/
dench0 → changed the visibility of the branch 3451720-fix-phpstan-warnings to active.
dench0 → changed the visibility of the branch 3451720-fix-phpstan-warnings to hidden.
1. Are you using a custom template for the form with a captcha?
2. Can you send me a link to the form page in PM?
Hey @pablo_pukha,
great find, thanks.
@lalustine
you need to check custom scripts for something like self = this;
and replace it with var self = this;
.
Do you have any other errors in the console?
Please show what recaptcha resources are loaded like on the attached screenshot.
Is there any limit for number of request for recaptcha v3 submission?
I'm not sure, but don't think there is a limit. At least in recaptcha documentation, there is no mention of this.
Do you have those errors when you manually submit the form? Or just have them in logs? Because if you can't reproduce it manually probably it's the bot submissions.
Please check if the recaptcha response was sent among the from data:
Are you using AJAX in your form?
Can you try to change the fallback to Math and check what happens?
Hmm, looks good.
What challenge do you use as a fallback?
The problem is that it's only happening to you. Hence I suppose the problem is on your side.
Please check the browser console log and provide the form markup in the inspector, like in this commentary:
https://www.drupal.org/project/recaptcha_v3/issues/3415978#comment-15406711
🐛
The response parameter is missing.
Closed: works as designed
There is too little information. Is your site online and if so, then can you send me a PM with the link to the page with the form?
@rraney
It works as it should: with just the captcha point or with the webform captcha element and with both captcha point and webform element as we
You definitely mess with the configuration.
This appears to be a duplicate issue.
https://www.drupal.org/project/recaptcha_v3/issues/3356718#comment-15026680 🐛 reCAPTCHA v3 not working in form with ajax elements Closed: works as designed
ok, then use the captcha element only.
np, please don't forget to close the issue when you ready
you should see the recaptcha logo in the right bottom corner
hmm, it looks good.
Try to use only one method: captcha element on webform or captcha point
please show your webform captcha element configuration. Just a screenshot will be enough (like in this commentary then adding the form to the list of CAPTCHA points).
then adding the form to the list of CAPTCHA points
you don't need to add a captcha point for the webform if you already added a captcha element to the webform
1. did you try to clear the cache?
2. Please show your captcha webform element configuration.
3. Are you using the custom template for this form?
as I see it's a webform.
Did you add captcha element to the webform and choose the configured reCAPTCHA v3 action?
Check your form markup to see if you have an element like on the screenshot.
@kevinquillen
Did you follow the documentation and creat a recaptcha action?
@stephenplatz
you need to update the php to the 8 version: google/recaptcha
1.3.0 requires it
dench0 → made their first commit to this issue’s fork.