• Resolved mrn55

    (@mrn55)


    Much love and many props for this plugin. I have one question at the moment, 5.3 includes a Site Admin Email Verification Screen that is causing me a bit of grief as I want it to not show since my auth is handled by Authorizer with CAS.

    According to https://make.ww.wp.xz.cn/core/2019/10/17/wordpress-5-3-admin-email-verification-screen/ you can use the filter add_filter( 'admin_email_check_interval', '__return_false' ); to do that, can that be incorporated into this plugin or should that be its own thing?

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mrn55

    (@mrn55)

    Also, may need to check this issue separately, logout functionality is not working, once logged into the system, I cannot log out. I’m reporting this early with little testing, if something changes will update.

    Plugin Author Paul Ryan

    (@figureone)

    Thanks! I think the filter hook to adjust the admin email check belongs better as a theme customization (dropped into functions.php in your theme). I can see many Authorizer users not wanting to change it. That said, I thought it was an odd choice by the core folks; it seemed to come from a perspective of a site with a single admin. Maybe it will get scaled back in future versions.

    Also, we have the logout issue tracked here, due to a side effect introduced in WordPress 5.3:
    https://ww.wp.xz.cn/support/topic/logout-does-not-work-2/

    Thread Starter mrn55

    (@mrn55)

    Roger, I use Authorizer on a multisite with many themes, implementing that at the theme level is not sensible for our use case. However I can see not adding it to your plugin, while I think it should be an option, I may explore just creating a small mu plugin for it, if there you think that’s my best route.

    I did see you picked up the logout issue… sounds good.

    Thanks!

    Plugin Author Paul Ryan

    (@figureone)

    Oh yeah, small mu-plugin sounds like a good idea. Could be as simple as:
    /wp-content/mu-plugins/disable-site-admin-email-verification.php:

    <?php
    /**
     * Plugin Name: Disable Admin Email Check
     * Description: Disables the Site Admin Email Verification Screen using the admin_emai$
     * License:     GNU General Public License v3 or later
     * License URI: http://www.gnu.org/licenses/gpl-3.0.html
     */
    add_filter( 'admin_email_check_interval', '__return_false' );
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Hide Site Admin Email Verification Screen’ is closed to new replies.