Two great great modules. but unfortunately, it looks like the two modules have conflicts and seem to disable eachother.
Has anyone addressed this issue? These are two modules that should be core to drupal 6.0
thanks!
- guppy
Two great great modules. but unfortunately, it looks like the two modules have conflicts and seem to disable eachother.
Has anyone addressed this issue? These are two modules that should be core to drupal 6.0
thanks!
- guppy
Comments
Comment #1
brunoslessa commentedIt happens because both, taxonomy_dhtml and dhtml_menu, have the same css class name for the submenu. That is... "submenu". Then, a square is shown before the links in the menu too.
You can change the css taxonomy_dhtml file (menuExpandable4.css), but you will modify too the way the taxonomy page (category) is shown. Not just the menu.
I preferred change the dhtml_menu module, in the file dhtml_menu.module. I changed the word "submenu" in the line 156 (v 1.6.2.14) to "menusub".
This solved the problem for me.
Bruno Lessa
revision in 2008-04-01: You will also need to change in the javascript file (dhtml_menu.js) the word "submenu" to "menusub".
Comment #2
Anonymous (not verified) commentedThis module is no longer being actively developed as it duplicates functionality that can be obtained through the usage of taxonomy_menu ( http://drupal.org/project/taxonomy_menu ) and dhtml_menu ( http://drupal.org/project/dhtml_menu ).