• Resolved Steve

    (@thewebsmiths)


    My clients Site Health screen shows ‘The Pods Team recommends you install the Pods Alternative Cache plugin‘ under recommended improvements.

    Can we remove this message without installing the cache plugin?

    Client doesn’t want the cache plugin and doesn’t want the message either.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Scott Kingsley Clark

    (@sc0ttkclark)

    It’s a recommendation using the Site Health API and unfortunately you can’t remove recommendations (like inactive plugins/themes recommendations).

    This message only shows on sites that have no object caching solution. It’s recommended to help provide better performance for these sites.

    Try upgrading the hosting to use Object Caching as I’m sure your client could be given great speed and performance benefits from setting that up.

    If you need to remove it through code, you could try this snippet.

    
    add_action( 'admin_init', static function() {
        remove_filter( 'site_status_tests', [ pods_admin(), 'site_status_tests' ] );
    }, 20 );
    
    Thread Starter Steve

    (@thewebsmiths)

    The client is on a dedicated server so the message is unnecessary for their situation. The code snippet worked perfectly.

    Thank you

    Plugin Contributor Scott Kingsley Clark

    (@sc0ttkclark)

    No problem, definitely still follow up on that object caching solution though because if they’re on a dedicated server that should still be a great addition for them.

    Happy building and have a great weekend, Steve!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Site Health message: The Pods Team recommends you install the Pods Alternative..’ is closed to new replies.