How to replace Defender logo on lockout screen and hide themes/plugins

When a user is locked out by Defender they see the Defender super hero, how can I replace this image with my own? I don’t want visitors to be able to see what plugin I use for privacy/security reasons.

Also, what other methods can I use to hide what plugins and theme I use?

    • Chris
      • Multimedia Yoda

      Does anyone know if a feature request has been put in for this? Or if its in the new rev plan?
      I too have come across this issue with multiple sites, I got around it by adding a redirect so updates wouldn’t break my modifications to the PHP.

      hoang – Have you had any issues with updates removing your modifications to the php?

  • Eisma
    • New Recruit

    Can’t we apply a filter on ‘wd_render_partial’ and make changes that way?

    For example, like this (not tested):

    function example_filter( $content, $viewFile, $params ) {
    if ( $viewFile == 'locked' ) {
    // adjust $content var
    // params['message'] holds the message from settings
    }

    return $content;
    }
    add_filter( 'wd_render_partial', 'example_filter', 3, 10 );