Theme and plugin are blocking Defender scan

The Defender scan hangs up. With a conflict test two culprits were identified:

– a theme “Memberlite”

– a PMPRO add-on packages plugin

If any of them is enabled, scan doesn’t work. Support access is granted to “test.igo…” site, do not touch the “www.igo…” site please.

  • Adam
    • Support Gorilla

    Hi, Ash!

    I just wanted to confirm that I have already passed information to our Second Line Support and asked them for help on this. I’m awaiting their response. Me or one of my colleagues we will let you know here when we got any additional questions or information for you.

    Best regards,

    Adam

  • Ivan Svyrskyi
    • Developer

    Hi Ash Nandrajog !

    I added the following code as MU plugin to your site (wordpress_folder)/wp-content/mu-plugins/wpmu_remove_memberlite_featured_image_hook_for_defender_posts.php

    function wpmu_remove_memberlite_featured_image_hook_for_defender_posts($post_id, $post, $update) {
    if ( !empty( $post->post_status ) && 'init' === $post->post_status ) {
    remove_filter( 'save_post', 'memberlite_save_featured_image_meta' );
    }
    }
    add_action( 'save_post', 'wpmu_remove_memberlite_featured_image_hook_for_defender_posts', 0, 3 );

    It seems Defender scanning works fine now.

    Also, we will add a fix for this issue in the plugin in soon.

    Best regards,

    Ivan.