Notification about auto update is wrong
-
Hi,
On some websites I maintain, I see a notification about auto updates with the suggestion to enable it:
“We zien dat je automatische updates voor WordPress hebt ingeschakeld. We raden je aan dit ook voor Yoast SEO te doen. Op deze manier kunnen we garanderen dat WordPress en Yoast SEO samen goed blijven draaien. Ga naar je plugins overzicht voor inschakelen van auto-updates voor Yoast SEO .”However, I’ve disabled automatic updates on all sites, because they are managed from a centralized dashboard. For that I’ve got a mu-plugin with the following filters:
/** Disable the possibility to enable automatic updates (WP 5.5) */ add_filter( 'plugins_auto_update_enabled', '__return_false' ); add_filter( 'themes_auto_update_enabled', '__return_false' ); /** Disable the possibility to enable automatic updates for WP core (WP 5.6) */ add_filter( 'allow_major_auto_core_updates', '__return_false' );
So I was wondering why the notification is still shown in Yoast SEO.
I’ve found the filter:
add_filter( 'wpseo_update_notice_content', '__return_null' );
but it shouldn’t be necessary to run it, as the analysis is wrong in the first place. Can you tell me what to check (file or database) where the check gets it’s information from?Not all sites running Yoast SEO have this issue, all are fully updated (daily) to the latest versions.
Thanks,
Jos Klever
Web Support
- The topic ‘Notification about auto update is wrong’ is closed to new replies.