• Very helpful plugin. It works best on a server that has memcaching available. But be careful and test everything when you enable the different settings! The ‘Combine CSS” feature trashes my mobile view, and the Browser-specific Caching setting doesn’t fix it, so that’s bad on one hand, (though it’s probably my theme’s fault), but the good thing is that you can disable this in the plugin settings.

Viewing 1 replies (of 1 total)
  • Plugin Support Simeon Boev

    (@k3llanved)

    Hello @webmystery,

    Thank you for the feedback!

    Regarding the issue you mentioned take a look at our exclude filters that you could add in the functions.php of the active theme. This filter will allow you to exclude a style from the feature as long as you know its handler:

    add_filter( 'sgo_css_combine_exclude', 'css_combine_exclude' );
    function css_combine_exclude( $exclude_list ) {
        // Add the style handle to exclude list.
        $exclude_list[] = 'style-handle';
        $exclude_list[] = 'style-handle-2';
    
        return $exclude_list;
    }

    Best Regards,

    Simeon Boev

    • This reply was modified 1 year, 10 months ago by Simeon Boev.
Viewing 1 replies (of 1 total)
  • The topic ‘Works great but mind the settings’ is closed to new replies.