• Resolved Nawaf AlMutairi

    (@nawaf-blog)


    When I Enabled Comment Form

    I can not reply to comments through the WordPress ios app

    The only solution is to close noCaptcha from the Comment Form, Or disable the plugin.

    What’s the solution?

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can add following code in your child theme’s functions.php

    add_filter( 'anr_verify_captcha_pre', function( $return ){
        if( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ){
            $return = true;
        }
        return $return;
    });
    
    Thread Starter Nawaf AlMutairi

    (@nawaf-blog)

    Thank you for helping me solve the problem

    The solution you gave me was the reason

    Thanks again Shamim 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Unable to comments after enabling plugin’ is closed to new replies.