• Does adding filter:

    add_filter('wpcf7_spam', function() { return false; });

    removes recaptcha checks as well?

Viewing 2 replies - 1 through 2 (of 2 total)
  • As per the documentation, you need to add the following condition first in the filter. This checks for the other spam filters first.

    if ( $spam ) { return $spam; }
    Thread Starter Nikodemsky

    (@nikodemsky)

    That doesn’t really anwser my question, Recaptcha could work independently from core antispam, there’s no single word about that in documentation.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wpcf7_spam and Recaptcha’ is closed to new replies.