Jump to content

minifier html


Recommended Posts

après avoir analysé par google Page speed, j'avais une croix rouge sur Minify HTML, car j'ai créé pas mal de notation dans mon template, et pour améliorer la page, j'ai donc ajouté dans /config/smarty.config.inc.php

$smarty->register_prefilter('smarty_prefilter');
function smarty_prefilter($out_put, &$smarty)
{
$out_put = preg_replace('/<!--.*?-->/', '', $out_put);
return preg_replace ('/\t/', '', $out_put);
}



juste après la ligne 13

$smarty->debug_tpl        = _PS_ALL_THEMES_DIR_ . 'debug.tpl';



cela permet de supprimer toutes les notations comme <!-- ex.-->, et les tabs, et j'ai sauvé environ 8k par page.
je teste encore en local, jusqu'à présent j'ai pas eu de pb

cordialement

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...