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

dagomar’s picture

Oh I forgot, when $path is changed like this, you are still able to use 'path_to_theme' from within the subtheme, obviously.

designerbrent’s picture

Status: Active » Closed (works as designed)