Closed (fixed)
Project:
Views Term Path Override
Version:
6.x-1.0
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
13 Jan 2011 at 22:37 UTC
Updated:
6 Jun 2011 at 09:51 UTC
Is it possible to override menu items using this module? I'm trying to add a links to the taxonomy/term/ urls but they are not getting overridden by the module, they are just linking to the taxonomy listing page.
I am not using the taxonomy_term_path($term) function because you can't copy that into the path form field when creating a menu item. Is it possible for the module to override all term links, not just the ones using the taxonomy_term_path($term) function?
Comments
Comment #1
plachThis module overrides links produced through the
taxonomy_term_path()function, nothing else. You might want to implement hook_menu_link_alter to replace the menu item path with the one produced bytaxonomy_term_path($term), if the menu item points totaxonomy/term/$tid.Comment #2
plach