When taxonomy menu creates a new menu, each of the items it creates should be editable, e.g., you should be able to change the link location for each link and also be able to delete any item.

Comments

moshe weitzman’s picture

Status: Active » Closed (works as designed)

use menus.module . it comes with drupal.

matt westgate’s picture

Status: Closed (works as designed) » Active

The attraction to taxonomy_menu is that it dynamically adds taxonony terms as menu items when new terms are created or modified. Being able to then edit them by hand would be the icing on the cake.

moshe weitzman’s picture

Ah, OK. the only module i know of that creates real menu items outside of hook_menu() is category. might be an inspiration there.

ryanrain’s picture

I'm creating a site for a hierarchically organized collection of articles. i'd like have the top-level links generated by taxonomy_menu take users to dynamically updated table-of-contents pages generated by the views module, rather than to lists of teasers. using the menu module admin screen, i can change the names of the taxonomy_menu links, but not the path to which they send users. does anybody else think being able to change the path would be a useful feature?

thanks everybody. 5.2 is a pleasure to work with.
-ryan

ryanrain’s picture

my dirty workaround:
insert

<?php
if (arg(0)=="taxonomy_menu") {
header("Location: my_custom_view"); 
}

into a post and make it sticky.

brmassa’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

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