Hello @drtux2684
There could be a few reasons why you are not seeing the updates. Let me guide you through some troubleshooting steps that might help you fix the issue:
- Check your WordPress site’s settings to ensure you have not disabled automatic updates. It could be done using code, Plugin, or Hosting software like Softaculous.
2. Try deactivating all plugins temporarily and then check for updates. If the issue resolves, then reactivate each plugin one by one until you find the one causing the issue.
3. Check the theme’s functions.php to see whether it has any code to disable WordPress Update nags. The code should look like this:
function remove_core_updates(){
global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,);
}
add_filter('pre_site_transient_update_core','remove_core_updates');
add_filter('pre_site_transient_update_plugins','remove_core_updates');
add_filter('pre_site_transient_update_themes','remove_core_updates');
If none of the above steps work, then there may be a conflict with your WordPress installation or hosting provider. In that case, you can try contacting your hosting provider to check if they can assist you.