Support

Account

Home Forums Backend Issues (wp-admin) Disable ACF upgrade for clients Reply To: Disable ACF upgrade for clients

  • I used this in my functions.php file:

    add_filter('site_transient_update_plugins', 'my_remove_update_nag');
    function my_remove_update_nag($value) {
     unset($value->response[ 'advanced-custom-fields-pro/acf.php' ]);
     return $value;
    }

    the “my” can be whatever you want. 🙂