• My WordPress keeps plugins and core always up to date. How can I make this up. It shows blank in Auto-Update’s

    https://ibb.co/W2ZJcTJ

    When I changed the theme, the updates showed up. How could have changed it in the theme.

    • This topic was modified 1 year, 6 months ago by drtux2684.
    • This topic was modified 1 year, 6 months ago by drtux2684.
    • This topic was modified 1 year, 6 months ago by drtux2684.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Some hosting disables the update from the dashboard. You’ll have to upgrade the WP CORE from their dashboard. Which hosting are you using?

    Thread Starter drtux2684

    (@drtux2684)

    I have own vps. WP-Core showing “You are using the latest version”

    Follow options #2 and #3 from this article that will solve the issue.
    Article: https://www.wpbeginner.com/wp-tutorials/how-to-enable-automatic-updates-in-wordpress-for-major-releases/

    Thread Starter drtux2684

    (@drtux2684)

    Thanks for your effort. I already tried all of them. Not worked. I will try by manual.

    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:

    1. 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.

    Thread Starter drtux2684

    (@drtux2684)

    @codechef

    Fixed it, Thank you very much.

    Regards.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘WordPress not showing plugin/core updates’ is closed to new replies.