Support

Account

Home Forums Bug Reports Unable to upgrade the database after upgrading from v4 to v5 Reply To: Unable to upgrade the database after upgrading from v4 to v5

  • I will be honest. I don’t think this means anything. I think it is just annoying. I already upgraded all of the sites. And I don’t see anything specifically triggering this, so it just seems like this shows up in the latest version for no good reason. I am moving on and forcing it off. Add this somewhere to remove it:

    add_filter( 'acf/settings/show_admin', '__return_false' );

    Plugin to apply to network, change info as needed. I saved it to remove-acf-network-admin-notice.php and uploaded the file to my site’s plugins:

    <?php
    
    /**
     * @wordpress-plugin
     * Plugin Name:       Remove ACF Network Admin Notice
     * Description:       Removes the non-working, seamingly senseless upgrade notice in ACF
     * Version:           1.0.0
     * Author:            Jupitercow
     * Author URI:        http://Jupitercow.com/
     * Contributor:       Jake Snyder
     * License:           GPL-2.0+
     * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     * Network:           true
     */
    
    add_filter( 'acf/settings/show_admin', '__return_false' );