Currently any new taxonomy gets made as a menu, in most cases you don't want it to be shown so a good idea might be to not show by default then if there's one you want to display you can always select it. It's tiresome to have to go back and unselect all the ones you don't want especially if there are many. I don't like taxonomy_menu because of this, but it appears to be the only thing that will create blog like category menus.

Comments

hutch’s picture

try changing lines 44, 100 and 150 in taxonomy_menu.module:

      variable_get('taxonomy_menu_show_' . $vocabulary->vid, 1),

to

      variable_get('taxonomy_menu_show_' . $vocabulary->vid, 0),

You could elaborate on this by defining a constant at the top of the file

define('TAXONOMY_MENU_SHOW_DEFAULT', 0);

and replacing the 0 with TAXONOMY_MENU_SHOW_DEFAULT

should do it.

darumaki’s picture

Status: Active » Closed (fixed)

that worked nicely thanks