Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author webheadcoder

    (@webheadllc)

    Sorry, currently that plugin is not supported.

    Plugin Author webheadcoder

    (@webheadllc)

    I know this is really late, but you could try adding this to your theme’s functions.php file. I’m not 100% sure it will work since I don’t have a LiteSpeed server.

    <?php
    function my_lt_cache_enable( $return = false ) {
        if ( class_exists( 'LiteSpeed_Cache_Purge' ) )
            return true;
        
        return $return;
    }
    add_filter('ccfm_supported_caching_exists', 'my_lt_cache_enable');
    
    function my_lt_cache_clear() {
        if ( my_lt_cache_enable() )
            LiteSpeed_Cache_Purge::purge_all( 'Clear Cache For Me' );
    }
    add_action('ccfm_clear_cache_for_me', 'my_lt_cache_clear');
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘LiteSpeed Cache plugin’ is closed to new replies.