Sunday, 18 August 2013

Remove all js and css from theme [Drupal 7]

Remove all js and css from theme [Drupal 7]

In html.tpl.php I have 2 variables: $styles and $scripts
But they not reset by template function:
function MYTHEME_preprocess_html(&$vars) {
$vars['styles'] = null;
$vars['scripts'] = null;
}
How can I reset this variables?

No comments:

Post a Comment