Customize the CAPTCHA message in Wordfence

Customize the CAPTCHA message in Wordfence on child sites.

Snippet Type

Execute on Child Sites

Snippet

function my_wfls_registration_blocked_message() {
	return '<strong>REGISTRATION BLOCKED</strong>: Registration could not be completed. Please visit our <a href="/contact/">contact page</a> for help.';
}
add_filter('wfls_registration_blocked_message', 'my_wfls_registration_blocked_message');
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.