WPIntell

Source evidence

Does AIOS support custom forms like YITH shortcode-based forms?

All-In-One Security (AIOS) – Security and Firewall · support · 2026-04-15T15:09:00+00:00

complaintsentiment
highseverity
0.82relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 32 rows with source links

18.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

26 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
youKnowWho resolved
I am using Cloudflare Turnstile via AIOS on my WooCommerce site. Turnstile works correctly on the default WooCommerce registration form. However, I am also using the YITH WooCommerce Affiliates plugin, which provides a custom affiliate registration form via shortcode: [yith_wcaf_registration_form]. Issue: Turnstile is not rendered on the YITH affiliate registration form But validation is still triggered on submission This results in a submission error because no Turnstile response exists Is there a way to disable Turnstile validation for specific forms/pages? Or is there a hook/filter to manually inject and validate Turnstile for custom forms? This currently blocks affiliate registration completely. Hi @flash1433 , AIOS might not show the captcha field for the YITH affiliate registration form. The filter /action to add the captcha YITH affiliate registration hook and action needs to be checked. It might be registration_errors related hook/ filter validating registration. Below is the simple action registration form, with a captcha field. add_action('register_form', array($aio_wp_security->captcha_obj, 'insert_captcha_question_form'); Please try adding code below in the themes function.php, it might show the captcha field. add_action('plugins_loaded', function () { global $aio_wp_security; if (isset($aio_wp_security->captcha_obj)) { add_action( 'yith_wcaf_after_registration_form', array($aio_wp_security->captcha_obj, 'insert_captcha_question_form') ); } }); Regards

Comments

1 shown
hjogiupdraftplus 2026-04-15T17:34:00+00:00

Hi @flash1433 , AIOS might not show the captcha field for the YITH affiliate registration form. The filter /action to add the captcha YITH affiliate registration hook and action needs to be checked. It might be registration_errors related hook/ filter validating registration. Below is the simple action registration form, with a captcha field. add_action('register_form', array($aio_wp_security->captcha_obj, 'insert_captcha_question_form'); Please try adding code below in the themes function.php, it might show the captcha field. add_action('plugins_loaded', function () { global $aio_wp_security; if (isset($aio_wp_security->captcha_obj)) { add_action( 'yith_wcaf_after_registration_form', array($aio_wp_security->captcha_obj, 'insert_captcha_question_form') ); } }); Regards