I've been testing the Blueprint 7.x-2.x-dev theme on Drupal 7 RC2 and encountered a glitch with the main_menu (primary links). It looks like the theme .info files reference the site's navigation as primary_links & secondary_links when it should now be main_menu & secondary_menu.

On the page.tpl.php it looks like it also needs to change to reference main_menu.

Comments

designerbrent’s picture

Status: Active » Postponed

Unfortunately, I have not had the time I would have liked to develop Blueprint 7.x version so as it sits, it is very clearly not usable. I'll gladly accept patches but as far as bugs go, there are many!

Prine’s picture

I was racking my head over this for some time.

Just for reference, if you find your page.tpl not displaying page variables $main_menu and $secondary_menu using blueprint subtheme. Make sure you change the following in your subtheme .info file.

features[] = primary_links
features[] = secondary_links

to

features[] = main_menu
features[] = secondary_menu

Rebuild your registry. Then view.

I know its obvious looking back but took me a while to figure out!