• Resolved Jimmy Lee

    (@shirtguy72)


    Hello Dev(s), hope I am finding you well. Kindly advise if there is a filter to disable the Powered Cache, clear cache prompt when deactivating/activating plugins. Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Mustafa Uysal

    (@m_uysl)

    Hi @shirtguy72 ,

    I understand how this can be somewhat frustrating 😅

    To address the issue, you might consider filtering the transient that’s typically utilized for monitoring plugin activations and deactivations.

    For example, you can use the following code snippet:

    
    add_filter( 'pre_transient_powered_cache_purge_cache_plugin_notice', function () {
    	return 0;
    } );
    
    

    give it a try and let me know if the problem continues.

Viewing 1 replies (of 1 total)

The topic ‘Filter? Disable /wp-admin/plugins.php Clear Cache Prompt’ is closed to new replies.