I wanted to use blueprint as a base theme. I noticed however the $path variable changes to the subtheme path, when it should point to the blueprint theme. Changing:
$vars['path'] = base_path() . path_to_theme() .'/';
to
$vars['path'] = base_path() . drupal_get_path('theme', 'blueprint') .'/';
in template.php in the blueprint folder did this perfectly.
Comments
Comment #1
dagomar commentedOh I forgot, when $path is changed like this, you are still able to use 'path_to_theme' from within the subtheme, obviously.
Comment #2
designerbrent commented