Minify adds 1000ms to the page load!
-
Hello!
Minify is adding 1000ms to the server response time!
disabling it will reduce the service time by 1000ms.just to mention i am using this code in functions.php to rename minified files. i am not sure if it’s related!
add_filter(‘w3tc_minify_urls_for_minification_to_minify_filename’, ‘w3tc_filename_filter’, 20, 3);
function w3tc_filename_filter($minify_filename, $files, $type ){
/* better to set versions manually */
$vers = ’30_6′;
$minify_filename = $vers.$minify_filename;
return $minify_filename;
}what’s the problem with minify.
Thanks!The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Minify adds 1000ms to the page load!’ is closed to new replies.