Just a note for anyone who's interested: this module breaks Conditional Styles module's functionality. This is because it copies over the vars['styles'] variable in ninesixty_preprocess_page(), overriding the changes that were made upstream by the Conditional Styles module.

Best thing to do as a subtheme developer is to write your own preprocess function and re-do the style addition from the conditional_styles.module.

Comments

jedihe’s picture

Just a note to help others:

The code must be in template.php and look like:

function YOURTHEMENAME_preprocess_page(&$vars, $hook) {
  //... some code here
  $vars['styles'] .= $vars['conditional_styles'] = variable_get('conditional_styles_' . $GLOBALS['theme'], '');
  //... maybe more here
}

(Remember that it's recommended to NOT use the closing tag "?>")

jedihe