Tuesday 30 September 2003 9:24:57 am
Ya, I've already done that. It still doesn't help. I did it! It was my cache. I had to manually clear it. Thx for your help. I really appreciate it. I've got one more question though. One my site I have a coloum that displays new articles (it displays them from all folders). When you click on (in the coloum) them it brings you to the full view of the article. This is fine for some of my classes, but my new class (id:23, wich shows in the coloum) doesn't have a full view, I would like for it to (when clicked) bring you to the folder displaying the class; but only for the class with an id of 23. Do you know the code for this? Or will I have to set it to go to the folder regardless? This is the code as of now: (ignore the html) <td width="204" valign="top">
<table class="menu" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<th class="menuhead">
News
</th> </tr>
{let news_list=fetch( content, tree, hash(
parent_node_id, 2,
limit, 3,
sort_by, array( published, false() ),
class_filter_type, include, class_filter_array, array( 2, 23, ) ) )}
{section name=News loop=$news_list}
<tr>
<td class="menuitem">
<div class="menuname">
<a href={concat('content/view/full/',$News:item.node_id)|ezurl}>{$News:item.name|wash}</a>
</div>
<div class="menudate">
({$News:item.object.published|l10n( shortdate )})
</div>
</td>
</tr>
{delimiter}
{/delimiter} {/section}
{/let} </table>
|