For me, the theme ignores the settings on the theme configuration page (under "Toggle display"), in particular the "Primary links" and "Secondary links": even when I disable them, they are still being displayed.

Comments

Anonymous’s picture

Assigned: Unassigned »
Status: Active » Fixed

It looks like this is caused by some development code that never got removed from the nitobe_preprocess_page function in template.php

If you remove or comment out these two lines (393 and 394), the theme will correctly honor your settings:

  $vars['primary_links']   = menu_primary_links();
  $vars['secondary_links'] = menu_secondary_links();

I have committed these changes to CVS as version 1.17 of template.php, and they will appear in the next development snapshot and official release.

Thanks!

rene_w’s picture

Thanks for the quick response -- commenting out the two lines did indeed fix the problem!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.