Issue with Block RecaptCha Cloudfare Turnstile
-
Hi there ,
Just upgrade to WP 7.0.1 and Otter 3.2.0 to include native support for Turnstile RecaptCha on Otter Forms block.
Working fine but some OTTER form properties on Submit Button are not saved
Form works well with Turnstile BUT only with default params.
Custom params are NOT saved like,
MailTO
Subject
Submit success message
Submit error message
I identify at leats two errors;ERROR 1
REST definition in themeisle_blocks_form_emails version 3.2.0 incomplete
Regarding Captcha Turnstile /Not existing in REST definition
captchaProvider is not a valid object propertiesI put a temp workaround in child theme functions.php
This remove error but do NOT fix save issue
<?php
/**- Added by BTB 13/07/2026
- Scope: Workaround for Otter 3.2.0 – Fix REST validation error:
- themeisle_blocks_form_emails -> captchaProvider
- TO DO Remove after official fix from ThemeIsle.
*/
add_action(‘rest_api_init’, function() {
register_setting(
‘general’,
‘themeisle_blocks_form_emails’,
array(
‘show_in_rest’ => array(
‘schema’ => array(
‘type’ => ‘array’,
‘items’ => array(
‘type’ => ‘object’,
‘additionalProperties’ => true,
),
),
),
)
);
}, 999);
?>
This fix removes save error message BUT params remains not saved
ERROR 2
OTTER React seems do not modify block status
Could you help ?
Thanks and regards,
Benoit @ DiDaXo.The page I need help with: [log in to see the link]
You must be logged in to reply to this topic.