Greetings everyone.<br>First of all sorry for my English.<br><br>My problem is that I cant check if the node in taxonomy directory or in node directory.<br>I made changes in uc_product.module&nbsp; something like that:<br><br>$output .=&#39;&lt;div class=&quot;product_image&quot;&gt;&#39;;<br>
if(){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //here if&nbsp; node is in taxonomy directory<br>&nbsp;&nbsp; $output .= &#39;&lt;a href=&quot;&#39;.&#39;node/&#39;. check_url($first[&#39;nid&#39;]) .&#39;&quot;&gt;&#39;;<br>&nbsp; $output .= theme(&#39;imagecache&#39;, &#39;product&#39;, $first[&#39;filepath&#39;], $first[&#39;alt&#39;], $first[&#39;title&#39;]);<br>
&nbsp;$output .= &#39;&lt;/a&gt;&#39;;<br>}<br>else{<br> $output .= theme(&#39;imagecache&#39;, &#39;_original&#39;, $first[&#39;filepath&#39;], $first[&#39;alt&#39;], $first[&#39;title&#39;]);<br>$output .=&#39;&lt;/a&gt;&#39;;<br>
}<br>&lt;/div&gt;<br><br>that&#39;s it. <br>