Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #269627

    I am using pingdom for qwikthinkers.com.

    It is claiming multiple times to get a request from the service for the one background video.

    It adds up to 2 MB. I want to know how I can fix this or compress this.

    #269887

    Hi QwikThinkers!

    Thank you for using the theme!

    There are lots of script errors on the website and it is probably cause by W3 Total Cache minify feature. Please disable the option then use this plugin instead: http://wordpress.org/plugins/bwp-minify/

    Add this on functions.php to exclude the custom.css file:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom');
        return $excluded;
    }

    Regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.