Closed (fixed)
Project:
Taxonomy dhtml
Version:
5.x-2.2
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
13 Mar 2007 at 05:15 UTC
Updated:
12 Apr 2009 at 04:18 UTC
Jump to comment: Most recent
Comments
Comment #1
mishhh commentedI second that.
Taxonomy_dhtml should provide links to vocabulary terms in alignment with the definitions pathauto does.
Comment #2
chazz commentedyes, links should be the same like pathauto links. Anybody have update ?
Comment #3
chazz commentedFor me it's working 50/50 because old aliases are change correct but when i add a new node link for categories doesnt work. It looks funny like "mysite.com/%5Bcatpatch%5D"
Comment #4
meba commentedI was thinking about this fix a long time ago. Can you provide a patch please? I will release it in next "feature" release.
Comment #5
markDrupal commentedI didnt totally patch this, but here is a change i made to my site to make the 2 modules work together. This patch turns off linking to taxonomy terms all toghther, it either links to a node or it shows the taxonomy term with no link
The patch starts around line 194 (some lines before and after the patch are included)
else if ($term->link){
$link = $term->link;
$output .= "
\n";
} else {
/Patch START (turn off linking to pages with no items
// $link = l(t($term->name), "taxonomy/term/$term->tid/9", array("title" => t($term->description)));
// $output .= "
\n";
$output .= "
\n";
//Patch END
}
}
$output .= str_repeat("
\n", 1+$term->depth);
return $output;
Comment #6
markDrupal commentedI'll try posting that again
Comment #7
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 ).