Tagged: background video, Website Speed
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.
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