I enable the theme and went to configure. But when I save the configuration and the color directory etc are created in files. The site still looks a if there is no styling.
So I went back to config and hit restore default and go this:
warning: Invalid argument supplied for foreach() in /var/www/html/drupal/sites/www.cacafoundation.org/themes/ad_blueprint/theme-settings.php on line 53.
Comments
Comment #1
mattyoung commentedHere is the problem:
variable_get('theme_ad_blueprint_settings', '')returns '' if theme_ad_blueprint_settings' is not set, which become error later on in foreach().It should be this:
$theme_settings = variable_get('theme_ad_blueprint_settings', array());But in any case, I cannot get the theme to work. It looks as if stylesheet is not there: the side look totally unstyled.
BTW, I'm doing this on D6.9
Comment #2
mattyoung commentedThe ad_blueprint-fluid theme works fine. Just the regular ad_blueprint does not work.
Comment #3
Alan Cooney commentedPlease use version 2 of the theme, it is enabled in this version.
Alan