<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#cc0000">
Seitenweberei.ch ha scritto:
<blockquote cite="mid:47BAC408.1010404@seitenweberei.ch" type="cite">
  <pre wrap="">Is there a module or any code snippet to hide navigation items if the
corresponing taxonomy term or view doesn't have any nodes assigned? I
searched but couldn't find any.
  </pre>
</blockquote>
One solution may be to test if there are nodes for the termX and after
display it. (This code is writing without test and only via memory)<br>
&lt;?<br>
if (db_result(db_query("select nid from node where tid = %d limit
0,1",{here the tid of termX})) == 1) {<br>
&nbsp;&nbsp;&nbsp; echo "termX of vocabolary Y";<br>
}<br>
?&gt;<br>
<br>
Ok, the code is not well performant, but it is a start.<br>
<br>
<br>
M.
</body>
</html>